From 2c60ad814be131bfbd14290a6120640592601315 Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 22 Nov 2024 17:31:54 -0500 Subject: [PATCH] fix --- tags/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/outputs.tf b/tags/outputs.tf index af8cb8f..f5e661b 100644 --- a/tags/outputs.tf +++ b/tags/outputs.tf @@ -16,5 +16,5 @@ output "tag_hierarchy" { output "finops_roles" { description = "Map of finops_project_role values based on finops_project_name and finops.roles in YAML" - value = { for r in local.finops_roles : r => format("%v_%v", local._finops_tags.project_name, r) } + value = { for r in local.finops_roles : r => format("%v_%v", local.finops_tags.project_name, r) } }