From 6b945615534b4b51e2cf699b1d70ef079c6d5ae4 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sat, 24 May 2025 03:19:24 +0000 Subject: [PATCH] fix(deps): update terraform dependencies --- examples/complete/main.tf | 2 +- solutions/standard/main.tf | 4 ++-- solutions/standard/version.tf | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 9db5df5..c4d0736 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -21,7 +21,7 @@ locals { module "key_protect_all_inclusive" { source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.1.5" + version = "5.1.6" 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 diff --git a/solutions/standard/main.tf b/solutions/standard/main.tf index 0f8a5f8..b3426fb 100644 --- a/solutions/standard/main.tf +++ b/solutions/standard/main.tf @@ -32,7 +32,7 @@ module "kms" { } count = local.create_new_kms_key ? 1 : 0 source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.1.5" + version = "5.1.6" create_key_protect_instance = false region = local.kms_region existing_kms_instance_crn = var.existing_kms_instance_crn @@ -392,7 +392,7 @@ module "secrets_manager_service_credentials" { count = length(local.service_credential_secrets) > 0 ? 1 : 0 depends_on = [time_sleep.wait_for_rabbitmq_authorization_policy] source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets" - version = "2.2.9" + version = "2.3.0" 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 diff --git a/solutions/standard/version.tf b/solutions/standard/version.tf index 7b543f8..dd6405a 100644 --- a/solutions/standard/version.tf +++ b/solutions/standard/version.tf @@ -4,7 +4,7 @@ terraform { required_providers { ibm = { source = "IBM-Cloud/ibm" - version = "1.78.2" + version = "1.78.3" } time = { source = "hashicorp/time"