From 9e82039303b7394da7a672851f196a2c515b32f0 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations Date: Sun, 1 Dec 2024 18:46:39 +0000 Subject: [PATCH] fix(deps): update terraform-module --- examples/complete/README.md | 2 +- examples/complete/main.tf | 2 +- examples/fscloud/main.tf | 2 +- solutions/standard/main.tf | 2 +- tests/existing-resources/main.tf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/complete/README.md b/examples/complete/README.md index a9a6b58f..53b565f3 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -14,7 +14,7 @@ This examples handles the provisioning of a new Secrets Manager instance. | Name | Source | Version | |------|--------|---------| -| [event\_notification](#module\_event\_notification) | terraform-ibm-modules/event-notifications/ibm | 1.15.0 | +| [event\_notification](#module\_event\_notification) | terraform-ibm-modules/event-notifications/ibm | 1.15.1 | | [key\_protect](#module\_key\_protect) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.17.1 | | [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.1.6 | | [secrets\_manager](#module\_secrets\_manager) | ../.. | n/a | diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 018603ef..d2c5874a 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -27,7 +27,7 @@ module "key_protect" { module "event_notification" { source = "terraform-ibm-modules/event-notifications/ibm" - version = "1.15.0" + version = "1.15.1" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-en" tags = var.resource_tags diff --git a/examples/fscloud/main.tf b/examples/fscloud/main.tf index 48f005ec..8713a756 100644 --- a/examples/fscloud/main.tf +++ b/examples/fscloud/main.tf @@ -42,7 +42,7 @@ module "cbr_zone" { module "event_notification" { source = "terraform-ibm-modules/event-notifications/ibm" - version = "1.15.0" + version = "1.15.1" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-en" tags = var.resource_tags diff --git a/solutions/standard/main.tf b/solutions/standard/main.tf index fa65d786..f41a8d79 100644 --- a/solutions/standard/main.tf +++ b/solutions/standard/main.tf @@ -125,7 +125,7 @@ module "secrets_manager" { module "iam_secrets_engine" { count = var.iam_engine_enabled ? 1 : 0 source = "terraform-ibm-modules/secrets-manager-iam-engine/ibm" - version = "1.2.5" + version = "1.2.6" region = local.secrets_manager_region iam_engine_name = var.prefix != null ? "${var.prefix}-${var.iam_engine_name}" : var.iam_engine_name secrets_manager_guid = local.secrets_manager_guid diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf index 7c39838e..a3349891 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 = "1.15.0" + version = "1.15.1" resource_group_id = module.resource_group.resource_group_id name = "${var.prefix}-en" tags = var.resource_tags