diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf index a3fde4d..fc47714 100644 --- a/examples/advanced/main.tf +++ b/examples/advanced/main.tf @@ -47,7 +47,7 @@ locals { module "key_protect_all_inclusive" { source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.4.2" + version = "5.4.3" resource_group_id = module.resource_group.resource_group_id key_protect_instance_name = "${var.prefix}-kms" region = var.region @@ -73,7 +73,7 @@ module "key_protect_all_inclusive" { module "event_notifications" { source = "terraform-ibm-modules/event-notifications/ibm" - version = "2.10.2" + version = "2.10.4" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-en" tags = var.resource_tags diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index a3bc283..41fa1b8 100644 --- a/solutions/fully-configurable/main.tf +++ b/solutions/fully-configurable/main.tf @@ -116,7 +116,7 @@ resource "time_sleep" "wait_for_kms_cross_account_authorization_policy" { module "kms" { count = var.kms_encryption_enabled && var.existing_kms_key_crn == null ? 1 : 0 # no need to create any KMS resources if passing an existing key source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.4.2" + version = "5.4.3" providers = { ibm = ibm.kms } diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf index 8fce063..16d288e 100644 --- a/tests/existing-resources/main.tf +++ b/tests/existing-resources/main.tf @@ -16,7 +16,7 @@ module "resource_group" { module "event_notifications" { source = "terraform-ibm-modules/event-notifications/ibm" - version = "2.10.2" + version = "2.10.4" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-en" tags = var.resource_tags