From 3646c9c4f86ab80ebed27eca1b7d41730df29a22 Mon Sep 17 00:00:00 2001 From: badra001 Date: Thu, 23 Apr 2026 11:15:23 -0400 Subject: [PATCH] - 0.3.2 -- 2026-04-23 - base-label - add output full_slash, full_dash --- CHANGELOG.md | 4 ++++ base-label/outputs.tf | 4 +++- common/version.tf | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b90dd45..c16a9a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,3 +27,7 @@ - 0.3.1 -- 2026-02-17 - base-label - add checking of business, application, environment + +- 0.3.2 -- 2026-04-23 + - base-label + - add output full_slash, full_dash diff --git a/base-label/outputs.tf b/base-label/outputs.tf index 9f77427..a00ac7b 100644 --- a/base-label/outputs.tf +++ b/base-label/outputs.tf @@ -38,6 +38,8 @@ output "formats" { prefix = local.blf_prefix 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,"")) + 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)) } } diff --git a/common/version.tf b/common/version.tf index a2913b4..bc88969 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,4 +1,4 @@ locals { - _module_version = "0.3.1" + _module_version = "0.3.2" _module_name = "boc-nts" }