From 68612803cbdc59716db0b22c613ba782867f0652 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sun, 20 Jul 2025 05:49:33 +0000 Subject: [PATCH] fix(deps): update terraform dependencies --- README.md | 2 +- examples/advanced/main.tf | 4 ++-- examples/enterprise/main.tf | 2 +- main.tf | 2 +- solutions/fully-configurable/README.md | 4 ++-- solutions/fully-configurable/version.tf | 2 +- tests/existing-resources/main.tf | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c3fefc5..027e9a6 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ statement instead the previous block. | Name | Source | Version | |------|--------|---------| -| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.32.3 | +| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.32.4 | | [trusted\_profile\_scc\_wp](#module\_trusted\_profile\_scc\_wp) | terraform-ibm-modules/trusted-profile/ibm | 3.1.1 | ### Resources diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf index 8c9afd0..306657a 100644 --- a/examples/advanced/main.tf +++ b/examples/advanced/main.tf @@ -43,7 +43,7 @@ resource "ibm_is_vpc" "example_vpc" { ############################################################################## module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.32.3" + version = "1.32.4" 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 @@ -60,7 +60,7 @@ module "cbr_zone" { # Create new App Config instance module "app_config" { source = "terraform-ibm-modules/app-configuration/ibm" - version = "1.8.7" + version = "1.8.9" region = var.region resource_group_id = module.resource_group.resource_group_id app_config_plan = "basic" diff --git a/examples/enterprise/main.tf b/examples/enterprise/main.tf index 038311a..53feb82 100644 --- a/examples/enterprise/main.tf +++ b/examples/enterprise/main.tf @@ -15,7 +15,7 @@ module "resource_group" { module "app_config" { source = "terraform-ibm-modules/app-configuration/ibm" - version = "1.8.7" + version = "1.8.9" region = var.region resource_group_id = module.resource_group.resource_group_id app_config_plan = "basic" diff --git a/main.tf b/main.tf index fc394c8..1aec642 100644 --- a/main.tf +++ b/main.tf @@ -48,7 +48,7 @@ resource "ibm_resource_tag" "scc_wp_access_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.32.3" + version = "1.32.4" 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/README.md b/solutions/fully-configurable/README.md index 5156be7..e739981 100644 --- a/solutions/fully-configurable/README.md +++ b/solutions/fully-configurable/README.md @@ -19,7 +19,7 @@ There is currently a [known issue](https://github.com/terraform-ibm-modules/terr | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.9.0 | -| [ibm](#requirement\_ibm) | 1.80.3 | +| [ibm](#requirement\_ibm) | 1.80.4 | | [restapi](#requirement\_restapi) | 2.0.1 | ### Modules @@ -33,7 +33,7 @@ There is currently a [known issue](https://github.com/terraform-ibm-modules/terr | Name | Type | |------|------| -| [ibm_iam_auth_token.auth_token](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.80.3/docs/data-sources/iam_auth_token) | data source | +| [ibm_iam_auth_token.auth_token](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.80.4/docs/data-sources/iam_auth_token) | data source | ### Inputs diff --git a/solutions/fully-configurable/version.tf b/solutions/fully-configurable/version.tf index 58abedc..51ed513 100644 --- a/solutions/fully-configurable/version.tf +++ b/solutions/fully-configurable/version.tf @@ -4,7 +4,7 @@ terraform { required_providers { ibm = { source = "IBM-Cloud/ibm" - version = "1.80.3" + version = "1.80.4" } restapi = { source = "Mastercard/restapi" diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf index 4c682e4..38d8c80 100644 --- a/tests/existing-resources/main.tf +++ b/tests/existing-resources/main.tf @@ -17,7 +17,7 @@ module "resource_group" { # Create new App Config instance module "app_config" { source = "terraform-ibm-modules/app-configuration/ibm" - version = "1.8.7" + version = "1.8.9" region = var.region resource_group_id = module.resource_group.resource_group_id app_config_name = "${var.prefix}-app-config"