diff --git a/README.md b/README.md
index 9134e15..7d63ef4 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ You need the following permissions to run this module.
| 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.5 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.32.6 |
| [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/backup-restore/main.tf b/examples/backup-restore/main.tf
index 44620d4..2ea3cf4 100644
--- a/examples/backup-restore/main.tf
+++ b/examples/backup-restore/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.1"
+ version = "1.3.0"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
diff --git a/examples/basic/main.tf b/examples/basic/main.tf
index 13d5aa9..709ade0 100644
--- a/examples/basic/main.tf
+++ b/examples/basic/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.1"
+ version = "1.3.0"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index f45951d..eff75c8 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -17,7 +17,7 @@ locals {
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.1"
+ version = "1.3.0"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
@@ -89,7 +89,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
module "cbr_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.32.5"
+ version = "1.32.6"
name = "${var.prefix}-VPC-network-zone"
zone_description = "CBR Network zone containing VPC"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
diff --git a/examples/fscloud/main.tf b/examples/fscloud/main.tf
index 81ec6f3..290f58a 100644
--- a/examples/fscloud/main.tf
+++ b/examples/fscloud/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.1"
+ version = "1.3.0"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
@@ -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.5"
+ version = "1.32.6"
name = "${var.prefix}-VPC-network-zone"
zone_description = "CBR Network zone containing VPC"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
diff --git a/main.tf b/main.tf
index 630b189..e7faf40 100644
--- a/main.tf
+++ b/main.tf
@@ -304,7 +304,7 @@ resource "ibm_resource_tag" "rabbitmq_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.5"
+ version = "1.32.6"
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/main.tf b/solutions/fully-configurable/main.tf
index 08e1af9..020a2f6 100644
--- a/solutions/fully-configurable/main.tf
+++ b/solutions/fully-configurable/main.tf
@@ -7,7 +7,7 @@ locals {
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.1"
+ version = "1.3.0"
existing_resource_group_name = var.existing_resource_group_name
}
diff --git a/solutions/fully-configurable/version.tf b/solutions/fully-configurable/version.tf
index 9c75e94..16ae055 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.4"
+ version = "1.81.0"
}
time = {
source = "hashicorp/time"