From 643a1b82d50d543d49b202f6d98788349900d814 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sat, 13 Sep 2025 07:39:04 +0000 Subject: [PATCH] fix(deps): update dependencies --- examples/advanced/main.tf | 6 +++--- examples/basic/main.tf | 2 +- solutions/fully-configurable/main.tf | 2 +- tests/resources/main.tf | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf index a81ffaf..7eb42f5 100644 --- a/examples/advanced/main.tf +++ b/examples/advanced/main.tf @@ -39,7 +39,7 @@ locals { module "event_streams" { source = "terraform-ibm-modules/event-streams/ibm" - version = "4.1.6" + version = "4.1.7" es_name = "${var.prefix}-eventsteams-instance" tags = var.resource_tags region = var.region @@ -91,7 +91,7 @@ module "key_protect" { module "cos" { source = "terraform-ibm-modules/cos/ibm" - version = "10.2.19" + version = "10.2.20" 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 = "10.2.19" + version = "10.2.20" bucket_configs = [ { bucket_name = local.at_bucket_name diff --git a/examples/basic/main.tf b/examples/basic/main.tf index e5084e3..93cbece 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -20,7 +20,7 @@ locals { module "event_streams" { source = "terraform-ibm-modules/event-streams/ibm" - version = "4.1.6" + version = "4.1.7" es_name = "${var.prefix}-eventsteams" tags = var.resource_tags region = var.region diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index 1896216..17b03de 100644 --- a/solutions/fully-configurable/main.tf +++ b/solutions/fully-configurable/main.tf @@ -246,7 +246,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 = "10.2.19" + version = "10.2.20" bucket_configs = [ for value in local.buckets_config : { diff --git a/tests/resources/main.tf b/tests/resources/main.tf index aabbdcf..9c3e334 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 = "10.2.19" + version = "10.2.20" 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 = "10.2.19" + version = "10.2.20" bucket_configs = [ { bucket_name = local.logs_bucket_name