Fixed problem with try in apigee module

This commit is contained in:
Miren Esnaola 2023-09-29 16:43:08 +02:00
parent 3d2285a5ab
commit 60906b66d8
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ resource "google_apigee_envgroup_attachment" "envgroup_attachments" {
envgroup = v2
}
}])...)
envgroup_id = each.value.envgroup
envgroup_id = "${local.org_id}/envgroups/${each.value.envgroup}"
environment = google_apigee_environment.environments[each.value.environment].name
depends_on = [google_apigee_envgroup.envgroups]
}