From 3e360cc7db9a7db5f988c4653480bdcd668ab93a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Conall=20=C3=93=20Cofaigh?= Date: Sun, 28 Sep 2025 20:07:02 +0100 Subject: [PATCH] fix: fix EN subscription attribute --- solutions/fully-configurable/main.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/solutions/fully-configurable/main.tf b/solutions/fully-configurable/main.tf index 8005fb4..c1c5ade 100644 --- a/solutions/fully-configurable/main.tf +++ b/solutions/fully-configurable/main.tf @@ -189,7 +189,6 @@ data "ibm_en_destinations" "en_destinations" { resource "ibm_en_topic" "en_topic" { count = var.enable_event_notifications ? 1 : 0 - depends_on = [module.app_config] instance_guid = local.existing_en_guid name = "Topic for App Configuration instance ${module.app_config.app_config_guid}" description = "Topic for App Configuration events routing" @@ -212,7 +211,7 @@ resource "ibm_en_subscription_email" "email_subscription" { attributes { add_notification_payload = true reply_to_mail = var.event_notifications_reply_to_email - reply_to_name = "Secret Manager Event Notifications Bot" + reply_to_name = "App Configuration Event Notifications Bot" from_name = var.event_notifications_from_email invited = var.event_notifications_email_list }