From 9df3f6927ca1d55e26c54fbebc6583cbd5d95f17 Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 22 Nov 2024 17:45:12 -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 c2925ac..645dd48 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_role", local._finops_tags.prefix)) = format("%v_%v", local.finops_tags.project_name, r) } } + value = { for r in local.finops_roles : r => { (format("%v_%v_role", local._finops_tags.prefix, "project")) = format("%v_%v", local.finops_tags.project_name, r) } } }