diff --git a/common-dev-assets b/common-dev-assets index 1ebf2a0f..de1a44f9 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit 1ebf2a0f89b723dd9a552f3a5db0a1b5b23ef40d +Subproject commit de1a44f9e255126c43757b2b0137ba8f57f61c1f diff --git a/examples/landing_zone/main.tf b/examples/landing_zone/main.tf index 7f0514fd..e3b123cd 100644 --- a/examples/landing_zone/main.tf +++ b/examples/landing_zone/main.tf @@ -17,7 +17,7 @@ module "resource_group" { module "cos_bucket" { count = var.enable_vpc_flow_logs ? 1 : 0 source = "terraform-ibm-modules/cos/ibm" - version = "10.14.4" + version = "10.14.5" resource_group_id = module.resource_group.resource_group_id region = var.region cross_region_location = null diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index 5567fa05..83f87bca 100644 --- a/solutions/fully-configurable/main.tf +++ b/solutions/fully-configurable/main.tf @@ -73,7 +73,7 @@ module "cos_buckets" { count = var.enable_vpc_flow_logs ? 1 : 0 depends_on = [time_sleep.wait_for_cross_account_authorization_policy[0]] source = "terraform-ibm-modules/cos/ibm//modules/buckets" - version = "10.14.4" + version = "10.14.5" bucket_configs = local.bucket_config } @@ -163,7 +163,7 @@ module "kms" { } 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 source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.5.32" + version = "5.5.33" create_key_protect_instance = false region = local.kms_region existing_kms_instance_crn = var.existing_kms_instance_crn diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index 79c636ee..3b13c4ad 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -20,7 +20,7 @@ module "resource_group" { module "cos" { count = var.enable_vpc_flow_logs ? 1 : 0 source = "terraform-ibm-modules/cos/ibm" - version = "10.14.4" + version = "10.14.5" resource_group_id = module.resource_group.resource_group_id region = var.region cos_instance_name = "${var.prefix}-cos" diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf index c084b46f..834ae0f3 100644 --- a/tests/existing-resources/main.tf +++ b/tests/existing-resources/main.tf @@ -33,7 +33,7 @@ resource "ibm_is_subnet" "testacc_subnet" { module "postgresql_db" { count = var.create_db ? 1 : 0 source = "terraform-ibm-modules/icd-postgresql/ibm" - version = "4.10.7" + version = "4.10.8" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-vpe-pg" region = var.region