diff --git a/README.md b/README.md index 3d772c6..fd40dfd 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ For more information on access and permissions, see [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.33.6 | +| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.33.7 | | [config\_aggregator\_trusted\_profile](#module\_config\_aggregator\_trusted\_profile) | terraform-ibm-modules/trusted-profile/ibm | 3.1.1 | | [config\_aggregator\_trusted\_profile\_enterprise](#module\_config\_aggregator\_trusted\_profile\_enterprise) | terraform-ibm-modules/trusted-profile/ibm | 3.1.1 | | [config\_aggregator\_trusted\_profile\_template](#module\_config\_aggregator\_trusted\_profile\_template) | terraform-ibm-modules/trusted-profile/ibm//modules/trusted-profile-template | 3.1.1 | diff --git a/common-dev-assets b/common-dev-assets index 1df43f2..ae23e02 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit 1df43f2daf97a529d05350408d32a12f50d89fbf +Subproject commit ae23e021950779a9c0612e71ce51d074f14b7543 diff --git a/examples/advanced/main.tf b/examples/advanced/main.tf index fc47714..1aaa5be 100644 --- a/examples/advanced/main.tf +++ b/examples/advanced/main.tf @@ -23,7 +23,7 @@ data "ibm_iam_account_settings" "iam_account_settings" { module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.33.6" + version = "1.33.7" name = "${var.prefix}-schematics-zone" zone_description = "CBR Network zone containing Schematics" account_id = data.ibm_iam_account_settings.iam_account_settings.account_id @@ -47,7 +47,7 @@ locals { module "key_protect_all_inclusive" { source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "5.4.3" + version = "5.4.4" 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.4" + version = "2.10.5" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-en" tags = var.resource_tags diff --git a/main.tf b/main.tf index 076c268..c4c9617 100644 --- a/main.tf +++ b/main.tf @@ -204,7 +204,7 @@ resource "ibm_config_aggregator_settings" "config_aggregator_settings" { module "cbr_rule" { count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0 source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module" - version = "1.33.6" + version = "1.33.7" rule_description = var.cbr_rules[count.index].description enforcement_mode = var.cbr_rules[count.index].enforcement_mode rule_contexts = var.cbr_rules[count.index].rule_contexts diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index 41fa1b8..fcc6344 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.3" + version = "5.4.4" providers = { ibm = ibm.kms } diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf index 16d288e..0bd9312 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.4" + version = "2.10.5" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-en" tags = var.resource_tags