diff --git a/README.md b/README.md
index 784a2fcb..2fbdd8bd 100644
--- a/README.md
+++ b/README.md
@@ -76,7 +76,7 @@ To create service credentials, access the Event Notifications service, and acces
| Name | Source | Version |
|------|--------|---------|
-| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.24.1 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.27.0 |
### Resources
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index 4f50d4b2..a7206180 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.15.11"
+ version = "4.15.13"
resource_group_id = module.resource_group.resource_group_id
region = var.region
key_protect_instance_name = "${var.prefix}-kp"
@@ -46,7 +46,7 @@ locals {
module "cos" {
source = "terraform-ibm-modules/cos/ibm"
- version = "8.11.7"
+ version = "8.11.10"
resource_group_id = module.resource_group.resource_group_id
region = var.region
cos_instance_name = "${var.prefix}-cos"
@@ -86,7 +86,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
module "cbr_vpc_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.24.1"
+ version = "1.27.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
@@ -98,7 +98,7 @@ module "cbr_vpc_zone" {
module "cbr_zone_schematics" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.24.1"
+ version = "1.27.0"
name = "${var.prefix}-schematics-zone"
zone_description = "CBR Network zone containing Schematics"
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 78145f20..07ef90e5 100644
--- a/examples/fscloud/main.tf
+++ b/examples/fscloud/main.tf
@@ -40,7 +40,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
module "cbr_vpc_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.24.1"
+ version = "1.27.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
@@ -52,7 +52,7 @@ module "cbr_vpc_zone" {
module "cbr_zone_schematics" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.24.1"
+ version = "1.27.0"
name = "${var.prefix}-schematics-zone"
zone_description = "CBR Network zone containing Schematics"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -77,7 +77,7 @@ locals {
module "cos" {
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
- version = "8.11.7"
+ version = "8.11.10"
resource_group_id = module.resource_group.resource_group_id
create_cos_instance = true
cos_instance_name = "${var.prefix}-cos"
diff --git a/main.tf b/main.tf
index 8f77d366..2f776098 100644
--- a/main.tf
+++ b/main.tf
@@ -164,7 +164,7 @@ resource "time_sleep" "wait_for_kms_authorization_policy" {
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.24.1"
+ version = "1.27.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 29cdbd43..81195576 100644
--- a/solutions/standard/main.tf
+++ b/solutions/standard/main.tf
@@ -75,7 +75,7 @@ module "kms" {
}
count = var.existing_kms_root_key_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "4.15.11"
+ version = "4.15.13"
create_key_protect_instance = false
region = local.kms_region
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -129,7 +129,7 @@ locals {
module "cos" {
count = var.existing_cos_bucket_name != null ? 0 : 1
source = "terraform-ibm-modules/cos/ibm"
- version = "8.11.7"
+ version = "8.11.10"
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
create_cos_bucket = var.existing_cos_bucket_name == null ? true : false
existing_cos_instance_id = var.existing_cos_instance_crn