From e1c18f7f0481b3afedf0235cbadac69e19954670 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sun, 10 Nov 2024 15:09:53 +0000 Subject: [PATCH] fix(deps): update terraform-module --- README.md | 2 +- examples/complete/main.tf | 4 ++-- examples/fscloud/main.tf | 2 +- main.tf | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b306c1be..d6aecbb3 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ To attach access management tags to resources in this module, you need the follo | Name | Source | Version | |------|--------|---------| -| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.27.0 | +| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.1 | ### Resources diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 8d4d9dc6..44e1f88c 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -16,7 +16,7 @@ module "resource_group" { module "key_protect_all_inclusive" { source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "4.16.4" + version = "4.16.8" 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 @@ -78,7 +78,7 @@ resource "time_sleep" "wait_30_seconds" { module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.27.0" + version = "1.28.1" name = "${var.prefix}-VPC-network-zone" zone_description = "CBR Network zone representing 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 cc97053d..9e4917ff 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.27.0" + version = "1.28.1" name = "${var.prefix}-VPC-network-zone" zone_description = "CBR Network zone representing VPC" account_id = data.ibm_iam_account_settings.iam_account_settings.account_id diff --git a/main.tf b/main.tf index 30067e3a..5b4a79d6 100644 --- a/main.tf +++ b/main.tf @@ -208,7 +208,7 @@ resource "ibm_resource_tag" "mysql_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.27.0" + version = "1.28.1" 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