diff --git a/README.md b/README.md
index d66969a0..bbd585f6 100644
--- a/README.md
+++ b/README.md
@@ -72,7 +72,7 @@ To attach access management tags to resources in this module, you need the follo
| 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.32.3 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.32.4 |
| [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/examples/complete/main.tf b/examples/complete/main.tf
index f4fd9898..455ebb1a 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -58,7 +58,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
module "vpc" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
- version = "7.25.10"
+ version = "7.25.11"
resource_group_id = module.resource_group.resource_group_id
region = var.region
prefix = var.prefix
@@ -87,7 +87,7 @@ resource "time_sleep" "wait_30_seconds" {
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
@@ -178,7 +178,7 @@ resource "time_sleep" "wait_120_seconds" {
module "vpe" {
source = "terraform-ibm-modules/vpe-gateway/ibm"
- version = "4.6.6"
+ version = "4.6.7"
prefix = "vpe-to-pg"
cloud_service_by_crn = [
{
diff --git a/examples/fscloud/main.tf b/examples/fscloud/main.tf
index 85ea5d89..83af75d2 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.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
diff --git a/main.tf b/main.tf
index cb84334b..679086cd 100644
--- a/main.tf
+++ b/main.tf
@@ -325,7 +325,7 @@ resource "ibm_resource_tag" "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/version.tf b/solutions/fully-configurable/version.tf
index d312ef5a..9c75e943 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"
}
time = {
source = "hashicorp/time"