Skip to content

Commit

Permalink
* 1.2.1 -- 2025-03-06
Browse files Browse the repository at this point in the history
  - acmpca-eks-cert-manager
    - un-hardcode validity_days from 365 to use the variable (due to the ACMPCA issuer lifetime being less than one year right now)
  • Loading branch information
badra001 committed Mar 6, 2025
1 parent 54567f1 commit 51a5e9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@
- add `import_to_acm` (true)
- acmpca-iam-rolesanywhere
- add `import_to_acm` (true)

* 1.2.1 -- 2025-03-06
- acmpca-eks-cert-manager
- un-hardcode validity_days from 365 to use the variable (due to the ACMPCA issuer lifetime being less than one year right now)
5 changes: 3 additions & 2 deletions acmpca-eks-cert-manager/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ module "certificate" {
certificate_authority_mode = "general"
certificate_type = "subordinate-ca"
certificate_subject_overrides = { ou = "PKI-EKS" }
validity_days = 365
import_to_acm = var.import_to_acm
# validity_days = 365
validity_days = var.validity_days
import_to_acm = var.import_to_acm

tags = merge(
local.base_tags,
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.0"
_module_version = "1.2.1"
}

0 comments on commit 51a5e9c

Please sign in to comment.