From be485d8a7751a4832f399e204bf3542ee3b32fc0 Mon Sep 17 00:00:00 2001 From: badra001 Date: Thu, 23 Apr 2026 11:25:04 -0400 Subject: [PATCH] fix --- base-label/outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base-label/outputs.tf b/base-label/outputs.tf index a00ac7b..e0b81b4 100644 --- a/base-label/outputs.tf +++ b/base-label/outputs.tf @@ -39,7 +39,7 @@ output "formats" { prefix_dash = local.prefix_dash prefix_slash = local.prefix_slash ecr_prefix = format("%v/%v", join("-", compact(slice(local.blf_prefix, 0, 2))), try(local.base.environment, "")) - full_dash = join("-", compcat(local._blf_parts)) - full_slash = join("/", compcat(local._blf_parts)) + full_dash = join("-", compact(local._blf_parts)) + full_slash = join("/", compact(local._blf_parts)) } }