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_apigee_instance_attachment" {
source="./modules/google-beta/r/google_apigee_instance_attachment"# environment - (required) is a type of stringenvironment=null# instance_id - (required) is a type of stringinstance_id=nulltimeouts=[{
create =null
delete =null
}]
}
variable"environment" {
description="(required) - The resource ID of the environment."type=string
}
variable"instance_id" {
description="(required) - The Apigee instance associated with the Apigee environment,\nin the format 'organisations/{{org_name}}/instances/{{instance_name}}'."type=string
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
delete =string
}
))
default=[]
}
resource"google_apigee_instance_attachment""this" {
# environment - (required) is a type of stringenvironment=var.environment# instance_id - (required) is a type of stringinstance_id=var.instance_iddynamic"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"]
}
}
}