diff --git a/README.md b/README.md
index 0989860..a828d37 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.0 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.32.2 |
| [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 f01ed16..af39af1 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.0"
+ version = "1.32.2"
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.3"
+ version = "1.8.5"
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 0cb44bd..0a6c970 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.3"
+ version = "1.8.5"
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 0fb7501..4624466 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.0"
+ version = "1.32.2"
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 c20203f..65f2066 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.79.2 |
+| [ibm](#requirement\_ibm) | 1.80.0 |
| [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.79.2/docs/data-sources/iam_auth_token) | data source |
+| [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 |
### Inputs
diff --git a/solutions/fully-configurable/version.tf b/solutions/fully-configurable/version.tf
index 0253496..fb26463 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.79.2"
+ version = "1.80.0"
}
restapi = {
source = "Mastercard/restapi"
diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf
index dc8bb2c..0acc37e 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.3"
+ version = "1.8.5"
region = var.region
resource_group_id = module.resource_group.resource_group_id
app_config_name = "${var.prefix}-app-config"