Skip to content

Commit

Permalink
[#1661] Make FAST stage 1 resman tf destroy more reliable
Browse files Browse the repository at this point in the history
Co-authored-by: Luca Prete <lucaprete@google.com>
  • Loading branch information
LucaPrete and Luca Prete authored Sep 8, 2023
1 parent 0e7cfc8 commit fcefadb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fast/stages/1-resman/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
}
}

Expand Down

0 comments on commit fcefadb

Please sign in to comment.