44
55module "resource_group" {
66 source = " terraform-ibm-modules/resource-group/ibm"
7- version = " 1.4.5 "
7+ version = " 1.4.6 "
88 existing_resource_group_name = var. existing_resource_group_name
99}
1010
@@ -16,15 +16,15 @@ module "resource_group" {
1616module "existing_kms_crn_parser" {
1717 count = var. existing_kms_instance_crn != null ? 1 : 0
1818 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
19- version = " 1.3.4 "
19+ version = " 1.3.5 "
2020 crn = var. existing_kms_instance_crn
2121}
2222
2323# If existing KMS root key CRN passed, parse details from it
2424module "existing_kms_key_crn_parser" {
2525 count = var. existing_kms_root_key_crn != null ? 1 : 0
2626 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
27- version = " 1.3.4 "
27+ version = " 1.3.5 "
2828 crn = var. existing_kms_root_key_crn
2929}
3030
@@ -96,7 +96,7 @@ module "kms" {
9696module "cos_kms_key_crn_parser" {
9797 count = (local. create_kms_keys || var. existing_kms_root_key_crn != null ) ? 1 : 0
9898 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
99- version = " 1.3.4 "
99+ version = " 1.3.5 "
100100 crn = local. cos_kms_key_crn
101101}
102102
@@ -190,7 +190,7 @@ resource "ibm_iam_authorization_policy" "en_kms_policy" {
190190module "existing_cos_crn_parser" {
191191 count = var. existing_cos_instance_crn != null ? 1 : 0
192192 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
193- version = " 1.3.4 "
193+ version = " 1.3.5 "
194194 crn = var. existing_cos_instance_crn
195195}
196196
@@ -248,7 +248,7 @@ module "cos_buckets" {
248248module "existing_en_crn_parser" {
249249 count = var. existing_event_notifications_instance_crn != null ? 1 : 0
250250 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
251- version = " 1.3.4 "
251+ version = " 1.3.5 "
252252 crn = var. existing_event_notifications_instance_crn
253253}
254254
@@ -307,7 +307,7 @@ module "event_notifications" {
307307module "existing_sm_crn_parser" {
308308 count = var. existing_secrets_manager_instance_crn != null ? 1 : 0
309309 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
310- version = " 1.3.4 "
310+ version = " 1.3.5 "
311311 crn = var. existing_secrets_manager_instance_crn
312312}
313313
0 commit comments