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_access_context_manager_access_policy" {
source="./modules/google-beta/r/google_access_context_manager_access_policy"# parent - (required) is a type of stringparent=null# title - (required) is a type of stringtitle=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
variable"parent" {
description="(required) - The parent of this AccessPolicy in the Cloud Resource Hierarchy.\nFormat: organizations/{organization_id}"type=string
}
variable"title" {
description="(required) - Human readable title. Does not affect behavior."type=string
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
delete =string
update =string
}
))
default=[]
}
resource"google_access_context_manager_access_policy""this" {
# parent - (required) is a type of stringparent=var.parent# title - (required) is a type of stringtitle=var.titledynamic"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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}