From 15dc65c387d04bc5a3d1e7a32136b27e3f616270 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sat, 25 Oct 2025 04:55:17 +0000 Subject: [PATCH] fix(deps): update dependencies --- README.md | 2 +- common-dev-assets | 2 +- examples/complete/main.tf | 4 ++-- examples/fscloud/main.tf | 2 +- main.tf | 2 +- solutions/fully-configurable/main.tf | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index fc751a0..eda4595 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ You need the following permissions to run this module. | Name | Source | Version | |------|--------|---------| | [backup\_key\_crn\_parser](#module\_backup\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 | -| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.33.6 | +| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.33.7 | | [kms\_key\_crn\_parser](#module\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 | ### Resources diff --git a/common-dev-assets b/common-dev-assets index 1df43f2..ae23e02 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit 1df43f2daf97a529d05350408d32a12f50d89fbf +Subproject commit ae23e021950779a9c0612e71ce51d074f14b7543 diff --git a/examples/complete/main.tf b/examples/complete/main.tf index d23bee2..1ee005a 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -52,7 +52,7 @@ locals { module "key_protect_all_inclusive" { source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.4.3" + version = "5.4.4" resource_group_id = module.resource_group.resource_group_id # Note: Database instance and Key Protect must be created in the same region when using BYOK # See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok @@ -89,7 +89,7 @@ data "ibm_iam_account_settings" "iam_account_settings" { module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.33.6" + version = "1.33.7" name = "${var.prefix}-VPC-network-zone" zone_description = "CBR Network zone containing VPC" account_id = data.ibm_iam_account_settings.iam_account_settings.account_id diff --git a/examples/fscloud/main.tf b/examples/fscloud/main.tf index 4002b83..0ddda85 100644 --- a/examples/fscloud/main.tf +++ b/examples/fscloud/main.tf @@ -39,7 +39,7 @@ resource "ibm_is_subnet" "testacc_subnet" { ############################################################################## module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.33.6" + version = "1.33.7" name = "${var.prefix}-VPC-network-zone" zone_description = "CBR Network zone containing VPC" account_id = data.ibm_iam_account_settings.iam_account_settings.account_id diff --git a/main.tf b/main.tf index c079872..26c336f 100644 --- a/main.tf +++ b/main.tf @@ -306,7 +306,7 @@ resource "ibm_resource_tag" "rabbitmq_tag" { module "cbr_rule" { count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0 source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module" - version = "1.33.6" + version = "1.33.7" rule_description = var.cbr_rules[count.index].description enforcement_mode = var.cbr_rules[count.index].enforcement_mode rule_contexts = var.cbr_rules[count.index].rule_contexts diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index b3a5077..73be8c2 100644 --- a/solutions/fully-configurable/main.tf +++ b/solutions/fully-configurable/main.tf @@ -32,7 +32,7 @@ module "kms" { } count = local.create_new_kms_key ? 1 : 0 source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.4.3" + version = "5.4.4" create_key_protect_instance = false region = local.kms_region existing_kms_instance_crn = var.existing_kms_instance_crn