From 7f1f7e7ec9261cc1116d5cc51befb3e113bbc0ea Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Fri, 25 Jul 2025 20:17:05 +0000 Subject: [PATCH 1/2] fix(deps): update terraform terraform-ibm-modules/cos/ibm to v10 --- examples/advanced/main.tf | 4 ++-- solutions/fully-configurable/main.tf | 2 +- tests/resources/main.tf | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf index e8caf5bf..a70e128e 100644 --- a/examples/advanced/main.tf +++ b/examples/advanced/main.tf @@ -91,7 +91,7 @@ module "key_protect" { module "cos" { source = "terraform-ibm-modules/cos/ibm" - version = "9.1.0" + version = "10.1.15" resource_group_id = module.resource_group.resource_group_id cos_instance_name = "${var.prefix}-cos" cos_tags = var.resource_tags @@ -104,7 +104,7 @@ locals { module "buckets" { source = "terraform-ibm-modules/cos/ibm//modules/buckets" - version = "9.1.0" + version = "10.1.15" bucket_configs = [ { bucket_name = local.at_bucket_name diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index e98e5621..4aa9f089 100644 --- a/solutions/fully-configurable/main.tf +++ b/solutions/fully-configurable/main.tf @@ -257,7 +257,7 @@ module "cos_bucket" { } count = length(coalesce(local.buckets_config, [])) != 0 ? 1 : 0 # no need to call COS module if consumer is using existing COS bucket source = "terraform-ibm-modules/cos/ibm//modules/buckets" - version = "9.1.0" + version = "10.1.15" bucket_configs = [ for value in local.buckets_config : { diff --git a/tests/resources/main.tf b/tests/resources/main.tf index 1bbcb6fd..d50526a9 100644 --- a/tests/resources/main.tf +++ b/tests/resources/main.tf @@ -16,7 +16,7 @@ module "resource_group" { module "cos" { source = "terraform-ibm-modules/cos/ibm" - version = "9.1.0" + version = "10.1.15" resource_group_id = module.resource_group.resource_group_id cos_instance_name = "${var.prefix}-cos" cos_tags = var.resource_tags @@ -34,7 +34,7 @@ locals { module "buckets" { source = "terraform-ibm-modules/cos/ibm//modules/buckets" - version = "9.1.0" + version = "10.1.15" bucket_configs = [ { bucket_name = local.logs_bucket_name From 7c01b666c88b21242f33b562e78a9de000d0acf3 Mon Sep 17 00:00:00 2001 From: Md Anam Raihan Date: Thu, 7 Aug 2025 07:23:06 +0000 Subject: [PATCH 2/2] SKIP UPGRADE TEST