Releases: terraform-ibm-modules/terraform-ibm-secrets-manager
Releases · terraform-ibm-modules/terraform-ibm-secrets-manager
v2.2.5
v2.2.4
v2.2.3
v2.2.2
v2.2.1
v2.2.0
v2.1.1
v1.26.4
1.26.4 (2025-04-02)
Fixes
- added the missing input
skip_iam_authorization_policy
from the DA. Previously this was automatically set tofalse
with no ability to override in the DA, meaning you might get an error if passing an existing Secrets Manager instance if the auth policy already exists. Exposing it now allows consumers to disable auth policy creation if it already exists.
v2.1.0
2.1.0 (2025-04-01)
Features
v1.26.3
1.26.3 (2025-04-01)
Fixes
-
added a fix to KMS key validation that was causing the following error when passing an existing Secrets Manager instance:
│ Error: Invalid function argument │ │ on ../../main.tf line 21, in locals: │ 21: validate_is_hpcs_key = var.is_hpcs_key && local.kms_service_name != "hs-crypto" ? tobool("When is_hpcs_key is set to true then the key provided through kms_key_crn must be a Hyper Protect Crypto Services key") : true │ ├──────────────── │ │ while calling tobool(v) │ │ Invalid value for "v" parameter: cannot convert "When is_hpcs_key is set to true then the key provided through kms_key_crn must be a Hyper Protect Crypto Services key" to bool; only the strings │ "true" or "false" are allowed.