Skip to content

Commit

Permalink
* 1.3.0 -- 2026-01-20
Browse files Browse the repository at this point in the history
  - add boc:module_name to submodules
  - add Name with role name content to acmpca-roles-anywhere
  • Loading branch information
badra001 committed Jan 20, 2026
1 parent daccf36 commit 8114234
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,7 @@

* 1.2.5 -- 2025-08-05
- acmpca-iam-rolesanywhere: add file_prefix and file_prefix_separator

* 1.3.0 -- 2026-01-20
- add boc:module_name to submodules
- add Name with role name content to acmpca-iam-rolesanywhere
3 changes: 3 additions & 0 deletions acm/_module_info.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
locals {
_module_name = "aws-certificates//acm"
}
1 change: 1 addition & 0 deletions acm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ locals {
account_environment = data.aws_arn.current.partition == "aws-us-gov" ? "gov" : "ew"

base_tags = {
"boc:tf_module_name" = local._module_name
"boc:tf_module_version" = local._module_version
"boc:created_by" = "terraform"
}
Expand Down
3 changes: 3 additions & 0 deletions acmpca-eks-cert-manager/_module_info.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
locals {
_module_name = "aws-certificates//acmpca-eks-cert-manager"
}
1 change: 1 addition & 0 deletions acmpca-eks-cert-manager/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ locals {
region_short = join("", [for c in split("-", local.region) : substr(c, 0, 1)])

base_tags = {
"boc:tf_module_name" = local._module_name
"boc:tf_module_version" = local._module_version
"boc:created_by" = "terraform"
}
Expand Down
3 changes: 3 additions & 0 deletions acmpca-iam-rolesanywhere/_module_info.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
locals {
_module_name = "aws-certificates//acmpca-iam-rolesanywhere"
}
2 changes: 2 additions & 0 deletions acmpca-iam-rolesanywhere/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ locals {
filename_prefix = var.filename_prefix != null ? format("%v%v", var.filename_prefix, var.filename_prefix_separator) : ""

base_tags = {
"boc:tf_module_name" = local._module_name
"boc:tf_module_version" = local._module_version
"boc:created_by" = "terraform"
}
Expand Down Expand Up @@ -139,5 +140,6 @@ module "certificate" {
tags = merge(
local.base_tags,
var.tags,
{ "Name" = var.role_name },
)
}
3 changes: 3 additions & 0 deletions acmpca/_module_info.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
locals {
_module_name = "aws-certificates//acmpca"
}
1 change: 1 addition & 0 deletions acmpca/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ locals {
account_environment = data.aws_arn.current.partition == "aws-us-gov" ? "gov" : "ew"

base_tags = {
"boc:tf_module_name" = local._module_name
"boc:tf_module_version" = local._module_version
"boc:created_by" = "terraform"
}
Expand Down
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.2.5"
_module_version = "1.3.0"
}

0 comments on commit 8114234

Please sign in to comment.