@@ -26,23 +26,23 @@ locals {
2626module "kms_root_key_crn_parser" {
2727 count = var. existing_kms_root_key_crn != null ? 1 : 0
2828 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
29- version = " 1.0 .0"
29+ version = " 1.1 .0"
3030 crn = var. existing_kms_root_key_crn
3131}
3232
3333# If existing KMS intance CRN passed, parse details from it
3434module "kms_instance_crn_parser" {
3535 count = var. existing_kms_instance_crn != null ? 1 : 0
3636 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
37- version = " 1.0 .0"
37+ version = " 1.1 .0"
3838 crn = var. existing_kms_instance_crn
3939}
4040
4141# If not using an existing COS bucket, or an existing EN instance, parse details from the KMS key CRN used for COS
4242module "cos_kms_key_crn_parser" {
4343 count = var. existing_cos_bucket_name == null && var. existing_en_instance_crn == null ? 1 : 0
4444 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
45- version = " 1.0 .0"
45+ version = " 1.1 .0"
4646 crn = local. cos_kms_key_crn
4747}
4848
@@ -199,7 +199,7 @@ module "kms" {
199199 }
200200 count = local. create_kms_keys ? 1 : 0
201201 source = " terraform-ibm-modules/kms-all-inclusive/ibm"
202- version = " 4.16.4 "
202+ version = " 4.16.8 "
203203 create_key_protect_instance = false
204204 region = local. kms_region
205205 existing_kms_instance_crn = var. existing_kms_instance_crn
@@ -216,7 +216,7 @@ module "kms" {
216216module "cos_instance_crn_parser" {
217217 count = var. existing_cos_instance_crn != null ? 1 : 0
218218 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
219- version = " 1.0 .0"
219+ version = " 1.1 .0"
220220 crn = var. existing_cos_instance_crn
221221}
222222
@@ -247,7 +247,7 @@ locals {
247247module "cos" {
248248 count = local. create_cos_bucket ? 1 : 0
249249 source = " terraform-ibm-modules/cos/ibm"
250- version = " 8.14.1 "
250+ version = " 8.14.3 "
251251 create_cos_instance = var. existing_cos_instance_crn == null ? true : false
252252 create_cos_bucket = local. create_cos_bucket
253253 existing_cos_instance_id = var. existing_cos_instance_crn
@@ -278,7 +278,7 @@ module "cos" {
278278module "existing_en_crn_parser" {
279279 count = var. existing_en_instance_crn != null ? 1 : 0
280280 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
281- version = " 1.0 .0"
281+ version = " 1.1 .0"
282282 crn = var. existing_en_instance_crn
283283}
284284
@@ -331,7 +331,7 @@ module "event_notifications" {
331331module "existing_sm_crn_parser" {
332332 count = var. existing_secrets_manager_instance_crn != null ? 1 : 0
333333 source = " terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
334- version = " 1.0 .0"
334+ version = " 1.1 .0"
335335 crn = var. existing_secrets_manager_instance_crn
336336}
337337
@@ -388,7 +388,7 @@ module "secrets_manager_service_credentials" {
388388 count = length (local. service_credential_secrets ) > 0 ? 1 : 0
389389 depends_on = [time_sleep . wait_for_en_authorization_policy ]
390390 source = " terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
391- version = " 1.17.4 "
391+ version = " 1.18.12 "
392392 existing_sm_instance_guid = local. existing_secrets_manager_instance_guid
393393 existing_sm_instance_region = local. existing_secrets_manager_instance_region
394394 endpoint_type = var. existing_secrets_manager_endpoint_type
0 commit comments