diff --git a/README.md b/README.md
index 16f3f859..91221142 100644
--- a/README.md
+++ b/README.md
@@ -141,13 +141,13 @@ For more info, see [Understanding user roles and resources](https://cloud.ibm.co
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.0.0 |
-| [ibm](#requirement\_ibm) | >= 1.69.0, <2.0.0 |
+| [ibm](#requirement\_ibm) | >= 1.70.0, <2.0.0 |
### Modules
| Name | Source | Version |
|------|--------|---------|
-| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.0 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.1 |
| [existing\_key\_ring\_keys](#module\_existing\_key\_ring\_keys) | terraform-ibm-modules/kms-key/ibm | v1.2.4 |
| [key\_protect](#module\_key\_protect) | terraform-ibm-modules/key-protect/ibm | 2.8.6 |
| [kms\_key\_rings](#module\_kms\_key\_rings) | terraform-ibm-modules/kms-key-ring/ibm | v2.5.0 |
diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf
index d0f4496f..2eb526c6 100644
--- a/examples/advanced/main.tf
+++ b/examples/advanced/main.tf
@@ -24,7 +24,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
# A network zone with Service reference to schematics
module "cbr_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.28.0"
+ version = "1.28.1"
name = "${var.prefix}-network-zone"
zone_description = "CBR Network zone for schematics"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
diff --git a/examples/advanced/version.tf b/examples/advanced/version.tf
index 972b871f..47b62bb1 100644
--- a/examples/advanced/version.tf
+++ b/examples/advanced/version.tf
@@ -6,7 +6,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
- version = ">= 1.65.0"
+ version = ">= 1.70.0"
}
}
}
diff --git a/examples/basic/version.tf b/examples/basic/version.tf
index 30c0d755..adba4452 100644
--- a/examples/basic/version.tf
+++ b/examples/basic/version.tf
@@ -6,7 +6,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
- version = "1.69.0"
+ version = "1.70.0"
}
}
}
diff --git a/examples/existing-resources/version.tf b/examples/existing-resources/version.tf
index 0f53fcc0..03933491 100644
--- a/examples/existing-resources/version.tf
+++ b/examples/existing-resources/version.tf
@@ -6,7 +6,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
- version = ">= 1.69.0"
+ version = ">=1.70.0"
}
}
}
diff --git a/main.tf b/main.tf
index 79a16a2a..cecb7ad0 100644
--- a/main.tf
+++ b/main.tf
@@ -170,7 +170,7 @@ locals {
module "cbr_rule" {
count = length(var.cbr_rules)
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
- version = "1.28.0"
+ version = "1.28.1"
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/version.tf b/version.tf
index 531648c0..9e52f088 100644
--- a/version.tf
+++ b/version.tf
@@ -7,7 +7,7 @@ terraform {
# tflint-ignore: terraform_unused_required_providers
ibm = {
source = "IBM-Cloud/ibm"
- version = ">= 1.69.0, <2.0.0"
+ version = ">= 1.70.0, <2.0.0"
}
}
}