Skip to content

Commit

Permalink
fix(deps): update terraform-module
Browse files Browse the repository at this point in the history
  • Loading branch information
terraform-ibm-modules-ops committed Nov 30, 2024
1 parent 9d43dde commit 903db7d
Show file tree
Hide file tree
Showing 4 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 @@ -50,7 +50,7 @@ locals {

module "key_protect_all_inclusive" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.16.11"
version = "4.17.1"
key_protect_instance_name = "${var.prefix}-kp"
resource_group_id = module.resource_group.resource_group_id
enable_metrics = false
Expand Down
2 changes: 1 addition & 1 deletion solutions/instance/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ module "secrets_manager_service_credentials" {
count = length(local.service_credential_secrets) > 0 ? 1 : 0
depends_on = [time_sleep.wait_for_cos_authorization_policy]
source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
version = "1.18.14"
version = "1.19.1"
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
2 changes: 1 addition & 1 deletion solutions/secure-cross-regional-bucket/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,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.16.11"
version = "4.17.1"
create_key_protect_instance = false
region = local.existing_kms_instance_region
existing_kms_instance_crn = var.existing_kms_instance_crn
Expand Down
2 changes: 1 addition & 1 deletion solutions/secure-regional-bucket/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,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.16.11"
version = "4.17.1"
create_key_protect_instance = false
region = local.existing_kms_instance_region
existing_kms_instance_crn = var.existing_kms_instance_crn
Expand Down

0 comments on commit 903db7d

Please sign in to comment.