From bd4d7f9a29824657fdaf00febba32f9e4b069499 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Mon, 7 Jul 2025 05:34:20 +0000 Subject: [PATCH] fix(deps): update terraform terraform-ibm-modules/cos/ibm to v10.1.5 --- 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 e6f63bb3..e365ed62 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.4" + version = "10.1.5" 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 e3df1ed9..de6f3066 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.4" + version = "10.1.5" bucket_configs = local.bucket_config }