From 0e1df5cd14e4b1214f62545ad2b4c36d7c61cab9 Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 22 Nov 2024 17:43:33 -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 f5e661b..c2925ac 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_role", local._finops_tags.prefix)) = format("%v_%v", local.finops_tags.project_name, r) } } }