Skip to content

Commit

Permalink
- 0.3.2 -- 2026-04-23
Browse files Browse the repository at this point in the history
  - base-label
    - add output full_slash, full_dash
  • Loading branch information
badra001 committed Apr 23, 2026
1 parent d149862 commit 3646c9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion base-label/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
}
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
locals {
_module_version = "0.3.1"
_module_version = "0.3.2"
_module_name = "boc-nts"
}

0 comments on commit 3646c9c

Please sign in to comment.