From 40c339725e080607a22708279e320ce656ff3cab Mon Sep 17 00:00:00 2001 From: dkatzz <86739416+dkatzz@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:11:11 -0400 Subject: [PATCH] Environmentalize email sns topic (#261) --- cloud/aws/templates/aws_oidc/alarms.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/aws/templates/aws_oidc/alarms.tf b/cloud/aws/templates/aws_oidc/alarms.tf index 50add4fd..0cf0c472 100644 --- a/cloud/aws/templates/aws_oidc/alarms.tf +++ b/cloud/aws/templates/aws_oidc/alarms.tf @@ -1,7 +1,7 @@ // SNS topic to alert if an alarm gets triggered resource "aws_sns_topic" "civiform_alert_topic" { count = var.rds_alarm_email != "" ? 1 : 0 - name = "civiform-alert-topic" + name = "${var.app_prefix}-civiform-alert-topic" } resource "aws_sns_topic_subscription" "civiform_alert_subscription" {