From 74774cc73d76d3d8c77536ad06e3938d74d602be Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sun, 6 Jul 2025 19:57:03 +0000 Subject: [PATCH] fix(deps): update terraform terraform-ibm-modules/cos/ibm to v10.1.4 --- examples/landing_zone/main.tf | 2 +- solutions/fully-configurable/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/landing_zone/main.tf b/examples/landing_zone/main.tf index e7b4aee0..e6f63bb3 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.3" + version = "10.1.4" 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 5ecb7b07..e3df1ed9 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.3" + version = "10.1.4" bucket_configs = local.bucket_config }