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"gridscale_paas_securityzone" {
source="./modules/gridscale/r/gridscale_paas_securityzone"# labels - (optional) is a type of set of stringlabels=[]
# location_uuid - (optional) is a type of stringlocation_uuid=null# name - (required) is a type of stringname=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"gridscale_paas_securityzone""this" {
# labels - (optional) is a type of set of stringlabels=var.labels# location_uuid - (optional) is a type of stringlocation_uuid=var.location_uuid# name - (required) is a type of stringname=var.namedynamic"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"]
}
}
}