diff --git a/README.md b/README.md
index 5da49fe9..796fed4a 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,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.1.0 |
-| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.30.0 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.31.0 |
| [kms\_key\_crn\_parser](#module\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
### Resources
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index 1184a0a7..e9de6ef8 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -21,7 +21,7 @@ locals {
module "key_protect_all_inclusive" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "4.21.10"
+ version = "4.22.0"
resource_group_id = module.resource_group.resource_group_id
# Note: Database instance and Key Protect must be created in the same region when using BYOK
# See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok
@@ -58,7 +58,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
module "vpc" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
- version = "7.22.14"
+ version = "7.23.1"
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.30.0"
+ version = "1.31.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/fscloud/main.tf b/examples/fscloud/main.tf
index 55301322..41a75120 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.30.0"
+ version = "1.31.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/main.tf b/main.tf
index 34a09250..efcd51c4 100644
--- a/main.tf
+++ b/main.tf
@@ -334,7 +334,7 @@ resource "ibm_resource_tag" "mysql_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.30.0"
+ version = "1.31.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
diff --git a/solutions/standard/main.tf b/solutions/standard/main.tf
index be15df5a..8f1b5f75 100644
--- a/solutions/standard/main.tf
+++ b/solutions/standard/main.tf
@@ -39,7 +39,7 @@ module "kms" {
}
count = local.create_new_kms_key ? 1 : 0
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "4.21.10"
+ version = "4.22.0"
create_key_protect_instance = false
region = local.kms_region
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -415,7 +415,7 @@ module "secrets_manager_service_credentials" {
count = length(local.service_credential_secrets) > 0 ? 1 : 0
depends_on = [time_sleep.wait_for_mysql_authorization_policy]
source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
- version = "2.1.1"
+ version = "2.2.0"
existing_sm_instance_guid = local.existing_secrets_manager_instance_guid
existing_sm_instance_region = local.existing_secrets_manager_instance_region
endpoint_type = var.existing_secrets_manager_endpoint_type