Skip to content

Commit 2638798

Browse files
authored
fix: fix Event Notifications subscription reply_to_name attribute (#287)
1 parent 5ddd917 commit 2638798

File tree

1 file changed

+1
-2
lines changed
  • solutions/fully-configurable

1 file changed

+1
-2
lines changed

solutions/fully-configurable/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ data "ibm_en_destinations" "en_destinations" {
189189

190190
resource "ibm_en_topic" "en_topic" {
191191
count = var.enable_event_notifications ? 1 : 0
192-
depends_on = [module.app_config]
193192
instance_guid = local.existing_en_guid
194193
name = "Topic for App Configuration instance ${module.app_config.app_config_guid}"
195194
description = "Topic for App Configuration events routing"
@@ -212,7 +211,7 @@ resource "ibm_en_subscription_email" "email_subscription" {
212211
attributes {
213212
add_notification_payload = true
214213
reply_to_mail = var.event_notifications_reply_to_email
215-
reply_to_name = "Secret Manager Event Notifications Bot"
214+
reply_to_name = "App Configuration Event Notifications Bot"
216215
from_name = var.event_notifications_from_email
217216
invited = var.event_notifications_email_list
218217
}

0 commit comments

Comments
 (0)