fix destroy in stage 1 outputs (#1099)

This commit is contained in:
Ludovico Magnocavallo 2023-01-19 10:35:40 +01:00 committed by GitHub
parent 1fe108b890
commit c1d3736b06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -76,11 +76,11 @@ locals {
data-platform-prod = try(module.branch-dp-prod-folder.0.id, null)
gke-dev = try(module.branch-gke-dev-folder.0.id, null)
gke-prod = try(module.branch-gke-prod-folder.0.id, null)
networking = module.branch-network-folder.id
networking-dev = module.branch-network-dev-folder.id
networking-prod = module.branch-network-prod-folder.id
networking = try(module.branch-network-folder.id, null)
networking-dev = try(module.branch-network-dev-folder.id, null)
networking-prod = try(module.branch-network-prod-folder.id, null)
sandbox = try(module.branch-sandbox-folder.0.id, null)
security = module.branch-security-folder.id
security = try(module.branch-security-folder.id, null)
teams = try(module.branch-teams-folder.0.id, null)
},
{