Skip to content

Commit

Permalink
fix(deps): update terraform-module (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
terraform-ibm-modules-ops authored Dec 14, 2024
1 parent 9541d73 commit 443b18a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/advanced/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "ibm_is_subnet" "testacc_subnet" {

module "key_protect_all_inclusive" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.17.1"
version = "4.18.0"
resource_group_id = module.resource_group.resource_group_id
# Note: Database instance and Key Protect must be created in the same region when using BYOK
# See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok
Expand Down
6 changes: 3 additions & 3 deletions solutions/standard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ module "kms" {
}
count = var.existing_kms_key_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.17.1"
version = "4.18.0"
create_key_protect_instance = false
region = local.existing_kms_instance_region
existing_kms_instance_crn = var.existing_kms_instance_crn
Expand Down Expand Up @@ -132,7 +132,7 @@ module "backup_kms" {
}
count = var.existing_backup_kms_key_crn != null ? 0 : var.existing_backup_kms_instance_crn != null ? 1 : 0
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.17.1"
version = "4.18.0"
create_key_protect_instance = false
region = local.existing_backup_kms_instance_region
existing_kms_instance_crn = var.existing_backup_kms_instance_crn
Expand Down Expand Up @@ -235,7 +235,7 @@ module "secrets_manager_service_credentials" {
count = length(local.service_credential_secrets) > 0 ? 1 : 0
depends_on = [time_sleep.wait_for_redis_authorization_policy]
source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
version = "1.17.8"
version = "1.19.4"
existing_sm_instance_guid = local.existing_secrets_manager_instance_guid
existing_sm_instance_region = local.existing_secrets_manager_instance_region
endpoint_type = var.existing_secrets_manager_endpoint_type
Expand Down

0 comments on commit 443b18a

Please sign in to comment.