From b1e2028927ddc78dcf863feeee630c6d6a19c26c Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sun, 6 Jul 2025 11:39:54 +0000 Subject: [PATCH] fix(deps): update terraform dependencies --- examples/landing_zone/main.tf | 2 +- solutions/fully-configurable/main.tf | 4 ++-- solutions/fully-configurable/version.tf | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/landing_zone/main.tf b/examples/landing_zone/main.tf index 37394a76..e7b4aee0 100644 --- a/examples/landing_zone/main.tf +++ b/examples/landing_zone/main.tf @@ -17,7 +17,7 @@ module "resource_group" { module "cos_bucket" { count = var.enable_vpc_flow_logs ? 1 : 0 source = "terraform-ibm-modules/cos/ibm" - version = "10.1.2" + version = "10.1.3" resource_group_id = module.resource_group.resource_group_id region = var.region cross_region_location = null diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index 671e3b42..5ecb7b07 100644 --- a/solutions/fully-configurable/main.tf +++ b/solutions/fully-configurable/main.tf @@ -73,7 +73,7 @@ module "cos_buckets" { count = var.enable_vpc_flow_logs ? 1 : 0 depends_on = [time_sleep.wait_for_cross_account_authorization_policy[0]] source = "terraform-ibm-modules/cos/ibm//modules/buckets" - version = "10.1.2" + version = "10.1.3" bucket_configs = local.bucket_config } @@ -163,7 +163,7 @@ module "kms" { } count = local.create_kms_key ? 1 : 0 # no need to create any KMS resources if not passing an existing KMS CRN or existing KMS key CRN is provided source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.1.8" + version = "5.1.9" create_key_protect_instance = false region = local.kms_region existing_kms_instance_crn = var.existing_kms_instance_crn diff --git a/solutions/fully-configurable/version.tf b/solutions/fully-configurable/version.tf index 597afe15..2b774858 100644 --- a/solutions/fully-configurable/version.tf +++ b/solutions/fully-configurable/version.tf @@ -4,7 +4,7 @@ terraform { # Lock DA into an exact provider version - renovate automation will keep it updated ibm = { source = "IBM-Cloud/ibm" - version = "1.79.2" + version = "1.80.0" } time = { source = "hashicorp/time"