[#1661] Make FAST stage 1 resman tf destroy more reliable

Co-authored-by: Luca Prete <lucaprete@google.com>
This commit is contained in:
Luca Prete 2023-09-08 12:09:31 +02:00 committed by GitHub
parent 0e7cfc8b29
commit fcefadbd8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -223,9 +223,9 @@ locals {
tfvars = {
folder_ids = local.folder_ids
service_accounts = local.service_accounts
tag_keys = { for k, v in module.organization.tag_keys : k => v.id }
tag_keys = { for k, v in try(module.organization.tag_keys, {}) : k => v.id }
tag_names = var.tag_names
tag_values = { for k, v in module.organization.tag_values : k => v.id }
tag_values = { for k, v in try(module.organization.tag_values, {}) : k => v.id }
}
}