diff --git a/README.md b/README.md
index c088a91..1734313 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,7 @@ statement instead the previous block.
| Name | Source | Version |
|------|--------|---------|
-| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.29.0 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.30.0 |
### Resources
diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf
index 7baddd7..f2f903e 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.29.0"
+ version = "1.30.0"
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/enterprise/main.tf b/examples/enterprise/main.tf
index da91939..0207bca 100644
--- a/examples/enterprise/main.tf
+++ b/examples/enterprise/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.1.6"
+ version = "1.2.0"
resource_group_name = var.resource_group == null ? "${var.prefix}-rg" : null
existing_resource_group_name = var.resource_group
}
diff --git a/main.tf b/main.tf
index ec4b80c..2f2bd74 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.29.0"
+ version = "1.30.0"
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