diff --git a/README.md b/README.md
index a828d37..c3fefc5 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.2 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.32.3 |
| [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 af39af1..8c9afd0 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.2"
+ version = "1.32.3"
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.5"
+ version = "1.8.7"
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 0a6c970..038311a 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.5"
+ version = "1.8.7"
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 4624466..fc394c8 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.2"
+ version = "1.32.3"
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 65f2066..5156be7 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.0 |
+| [ibm](#requirement\_ibm) | 1.80.3 |
| [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.0/docs/data-sources/iam_auth_token) | data source |
+| [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 |
### Inputs
diff --git a/solutions/fully-configurable/version.tf b/solutions/fully-configurable/version.tf
index fb26463..58abedc 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.0"
+ version = "1.80.3"
}
restapi = {
source = "Mastercard/restapi"
diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf
index 0acc37e..4c682e4 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.5"
+ version = "1.8.7"
region = var.region
resource_group_id = module.resource_group.resource_group_id
app_config_name = "${var.prefix}-app-config"