diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 5c25ebe4..fd97a376 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 @@ -58,7 +58,7 @@ data "ibm_iam_account_settings" "iam_account_settings" { module "vpc" { source = "terraform-ibm-modules/landing-zone-vpc/ibm" - version = "7.23.10" + version = "7.23.11" resource_group_id = module.resource_group.resource_group_id region = var.region prefix = var.prefix diff --git a/solutions/standard/main.tf b/solutions/standard/main.tf index 19095f81..c01609ed 100644 --- a/solutions/standard/main.tf +++ b/solutions/standard/main.tf @@ -25,7 +25,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 @@ -390,7 +390,7 @@ module "secrets_manager_service_credentials" { count = length(local.service_credential_secrets) > 0 ? 1 : 0 depends_on = [time_sleep.wait_for_mysql_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 7b543f8e..dd6405ac 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"