diff --git a/README.md b/README.md
index feba215d..749f1a40 100644
--- a/README.md
+++ b/README.md
@@ -250,9 +250,9 @@ Optionally, you need the following permissions to attach Access Management tags
| [attach\_sg\_to\_lb](#module\_attach\_sg\_to\_lb) | terraform-ibm-modules/security-group/ibm | 2.7.0 |
| [attach\_sg\_to\_master\_vpe](#module\_attach\_sg\_to\_master\_vpe) | terraform-ibm-modules/security-group/ibm | 2.7.0 |
| [attach\_sg\_to\_registry\_vpe](#module\_attach\_sg\_to\_registry\_vpe) | terraform-ibm-modules/security-group/ibm | 2.7.0 |
-| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.31.0 |
+| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.31.2 |
| [cos\_instance](#module\_cos\_instance) | terraform-ibm-modules/cos/ibm | 8.21.25 |
-| [existing\_secrets\_manager\_instance\_parser](#module\_existing\_secrets\_manager\_instance\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
+| [existing\_secrets\_manager\_instance\_parser](#module\_existing\_secrets\_manager\_instance\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
### Resources
diff --git a/examples/add_rules_to_sg/main.tf b/examples/add_rules_to_sg/main.tf
index 6b16eb1a..7d689943 100644
--- a/examples/add_rules_to_sg/main.tf
+++ b/examples/add_rules_to_sg/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
# 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/add_rules_to_sg/version.tf b/examples/add_rules_to_sg/version.tf
index 8cc7a5af..f63822dd 100644
--- a/examples/add_rules_to_sg/version.tf
+++ b/examples/add_rules_to_sg/version.tf
@@ -6,7 +6,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
- version = "1.78.2"
+ version = "1.79.2"
}
}
}
diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf
index 4d786aff..b371ee58 100644
--- a/examples/advanced/main.tf
+++ b/examples/advanced/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
# 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
@@ -22,7 +22,7 @@ locals {
module "kp_all_inclusive" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "5.1.7"
+ version = "5.1.8"
key_protect_instance_name = "${var.prefix}-kp-instance"
resource_group_id = module.resource_group.resource_group_id
region = var.region
diff --git a/examples/basic/main.tf b/examples/basic/main.tf
index ad446319..99e50692 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.0"
+ version = "1.2.1"
# 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/version.tf b/examples/basic/version.tf
index a71cf5f5..f7ceab17 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.78.2"
+ version = "1.79.2"
}
}
}
diff --git a/examples/cross_kms_support/main.tf b/examples/cross_kms_support/main.tf
index 52c46eb3..feb52950 100644
--- a/examples/cross_kms_support/main.tf
+++ b/examples/cross_kms_support/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
# 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/custom_sg/main.tf b/examples/custom_sg/main.tf
index 94741829..78691a49 100644
--- a/examples/custom_sg/main.tf
+++ b/examples/custom_sg/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
# 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/fscloud/main.tf b/examples/fscloud/main.tf
index eefedfb2..737f45cb 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.0"
+ version = "1.2.1"
# 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
@@ -52,7 +52,7 @@ module "flowlogs_bucket" {
module "vpc" {
depends_on = [module.flowlogs_bucket]
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
- version = "7.23.13"
+ version = "7.25.2"
resource_group_id = module.resource_group.resource_group_id
region = var.region
prefix = var.prefix
@@ -112,7 +112,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
module "cbr_vpc_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.31.0"
+ version = "1.31.2"
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
@@ -124,7 +124,7 @@ module "cbr_vpc_zone" {
module "cbr_zone_schematics" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
- version = "1.31.0"
+ version = "1.31.2"
name = "${var.prefix}-schematics-zone"
zone_description = "CBR Network zone containing Schematics"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -139,7 +139,7 @@ module "cbr_zone_schematics" {
module "cbr_rules" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
- version = "1.31.0"
+ version = "1.31.2"
rule_description = "${var.prefix} rule for vpc flow log access to cos"
enforcement_mode = "enabled"
resources = [{
diff --git a/examples/multiple_mzr_clusters/main.tf b/examples/multiple_mzr_clusters/main.tf
index 83e85511..f48dd261 100644
--- a/examples/multiple_mzr_clusters/main.tf
+++ b/examples/multiple_mzr_clusters/main.tf
@@ -4,7 +4,7 @@
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
# 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/main.tf b/main.tf
index d9adf0e6..6ae10b4f 100644
--- a/main.tf
+++ b/main.tf
@@ -695,7 +695,7 @@ locals {
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.31.0"
+ version = "1.31.2"
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
@@ -728,7 +728,7 @@ module "cbr_rule" {
module "existing_secrets_manager_instance_parser" {
count = var.enable_secrets_manager_integration ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
- version = "1.1.0"
+ version = "1.2.0"
crn = var.existing_secrets_manager_instance_crn
}
diff --git a/solutions/fully-configurable/README.md b/solutions/fully-configurable/README.md
index 53f0f6dc..5d40f712 100644
--- a/solutions/fully-configurable/README.md
+++ b/solutions/fully-configurable/README.md
@@ -17,20 +17,20 @@ The following resources are provisioned by this example:
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >=1.9.0 |
-| [ibm](#requirement\_ibm) | 1.78.4 |
+| [ibm](#requirement\_ibm) | 1.79.2 |
### Modules
| Name | Source | Version |
|------|--------|---------|
-| [existing\_boot\_volume\_kms\_key\_crn\_parser](#module\_existing\_boot\_volume\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
-| [existing\_cluster\_kms\_key\_crn\_parser](#module\_existing\_cluster\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
-| [existing\_kms\_crn\_parser](#module\_existing\_kms\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
-| [existing\_secrets\_manager\_instance\_parser](#module\_existing\_secrets\_manager\_instance\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
-| [existing\_vpc\_crn\_parser](#module\_existing\_vpc\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
-| [kms](#module\_kms) | terraform-ibm-modules/kms-all-inclusive/ibm | 5.1.7 |
+| [existing\_boot\_volume\_kms\_key\_crn\_parser](#module\_existing\_boot\_volume\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
+| [existing\_cluster\_kms\_key\_crn\_parser](#module\_existing\_cluster\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
+| [existing\_kms\_crn\_parser](#module\_existing\_kms\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
+| [existing\_secrets\_manager\_instance\_parser](#module\_existing\_secrets\_manager\_instance\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
+| [existing\_vpc\_crn\_parser](#module\_existing\_vpc\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
+| [kms](#module\_kms) | terraform-ibm-modules/kms-all-inclusive/ibm | 5.1.8 |
| [ocp\_base](#module\_ocp\_base) | ../.. | n/a |
-| [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.2.0 |
+| [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.2.1 |
| [secret\_group](#module\_secret\_group) | terraform-ibm-modules/secrets-manager-secret-group/ibm | 1.3.7 |
### Resources
@@ -38,8 +38,8 @@ The following resources are provisioned by this example:
| Name | Type |
|------|------|
| [terraform_data.delete_secrets](https://registry.terraform.io/providers/hashicorp/terraform/latest/docs/resources/data) | resource |
-| [ibm_is_subnet.subnets](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.78.4/docs/data-sources/is_subnet) | data source |
-| [ibm_is_subnets.vpc_subnets](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.78.4/docs/data-sources/is_subnets) | data source |
+| [ibm_is_subnet.subnets](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.79.2/docs/data-sources/is_subnet) | data source |
+| [ibm_is_subnets.vpc_subnets](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.79.2/docs/data-sources/is_subnets) | data source |
### Inputs
diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf
index 6ffe05b6..47094e91 100644
--- a/solutions/fully-configurable/main.tf
+++ b/solutions/fully-configurable/main.tf
@@ -3,7 +3,7 @@
#######################################################################################################################
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
existing_resource_group_name = var.existing_resource_group_name
}
@@ -14,21 +14,21 @@ module "resource_group" {
module "existing_kms_crn_parser" {
count = var.existing_kms_instance_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
- version = "1.1.0"
+ version = "1.2.0"
crn = var.existing_kms_instance_crn
}
module "existing_cluster_kms_key_crn_parser" {
count = var.existing_cluster_kms_key_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
- version = "1.1.0"
+ version = "1.2.0"
crn = var.existing_cluster_kms_key_crn
}
module "existing_boot_volume_kms_key_crn_parser" {
count = var.existing_boot_volume_kms_key_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
- version = "1.1.0"
+ version = "1.2.0"
crn = var.existing_boot_volume_kms_key_crn
}
@@ -95,7 +95,7 @@ module "kms" {
}
count = (var.kms_encryption_enabled_boot_volume && var.existing_boot_volume_kms_key_crn == null) || (var.kms_encryption_enabled_cluster && var.existing_cluster_kms_key_crn == null) ? 1 : 0
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "5.1.7"
+ version = "5.1.8"
create_key_protect_instance = false
region = local.cluster_kms_region
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -109,7 +109,7 @@ module "kms" {
########################################################################################################################
module "existing_vpc_crn_parser" {
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
- version = "1.1.0"
+ version = "1.2.0"
crn = var.existing_vpc_crn
}
@@ -238,7 +238,7 @@ module "ocp_base" {
module "existing_secrets_manager_instance_parser" {
count = var.enable_secrets_manager_integration ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
- version = "1.1.0"
+ version = "1.2.0"
crn = var.existing_secrets_manager_instance_crn
}
diff --git a/solutions/fully-configurable/version.tf b/solutions/fully-configurable/version.tf
index c102b901..b19fb1da 100644
--- a/solutions/fully-configurable/version.tf
+++ b/solutions/fully-configurable/version.tf
@@ -5,7 +5,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
- version = "1.78.4"
+ version = "1.79.2"
}
}
}
diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf
index d4bbe747..009014d6 100644
--- a/tests/existing-resources/main.tf
+++ b/tests/existing-resources/main.tf
@@ -3,7 +3,7 @@
#############################################################################
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
- version = "1.2.0"
+ version = "1.2.1"
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
}
@@ -14,7 +14,7 @@ module "resource_group" {
module "vpc" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
- version = "7.23.13"
+ version = "7.25.2"
resource_group_id = module.resource_group.resource_group_id
region = var.region
name = "vpc"