You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"google_compute_shared_vpc_host_project" {
source="./modules/google-beta/r/google_compute_shared_vpc_host_project"# project - (required) is a type of stringproject=nulltimeouts=[{
create =null
delete =null
}]
}
variable"project" {
description="(required) - The ID of the project that will serve as a Shared VPC host project"type=string
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
delete =string
}
))
default=[]
}
resource"google_compute_shared_vpc_host_project""this" {
# project - (required) is a type of stringproject=var.projectdynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
}
}
}