@@ -20,7 +20,7 @@ module "resource_group" {
2020module "existing_cos_crn_parser" {
2121 count = var. existing_cos_instance_crn != null ? 1 : 0
2222 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
23- version = " 1.3.7 "
23+ version = " 1.4.1 "
2424 crn = var. existing_cos_instance_crn
2525}
2626
@@ -73,7 +73,7 @@ module "cos_buckets" {
7373 count = var. enable_vpc_flow_logs ? 1 : 0
7474 depends_on = [time_sleep . wait_for_cross_account_authorization_policy [0 ]]
7575 source = " terraform-ibm-modules/cos/ibm//modules/buckets"
76- version = " 10.8.5 "
76+ version = " 10.9.1 "
7777 bucket_configs = local. bucket_config
7878}
7979
@@ -134,15 +134,15 @@ resource "time_sleep" "wait_for_cross_account_authorization_policy" {
134134module "existing_kms_instance_crn_parser" {
135135 count = var. kms_encryption_enabled_bucket && var. existing_kms_instance_crn != null ? 1 : 0
136136 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
137- version = " 1.3.7 "
137+ version = " 1.4.1 "
138138 crn = var. existing_kms_instance_crn
139139}
140140
141141# parse KMS details from the existing KMS instance CRN
142142module "existing_kms_key_crn_parser" {
143143 count = var. kms_encryption_enabled_bucket && var. existing_flow_logs_bucket_kms_key_crn != null ? 1 : 0
144144 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
145- version = " 1.3.7 "
145+ version = " 1.4.1 "
146146 crn = var. existing_flow_logs_bucket_kms_key_crn
147147}
148148
@@ -163,7 +163,7 @@ module "kms" {
163163 }
164164 count = local. create_kms_key ? 1 : 0 # no need to create any KMS resources if not passing an existing KMS CRN or existing KMS key CRN is provided
165165 source = " terraform-ibm-modules/kms-all-inclusive/ibm"
166- version = " 5.5.21 "
166+ version = " 5.5.22 "
167167 create_key_protect_instance = false
168168 region = local. kms_region
169169 existing_kms_instance_crn = var. existing_kms_instance_crn
0 commit comments