Skip to content

Commit

Permalink
Environmentalize email sns topic (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkatzz committed Sep 21, 2023
1 parent e24beb9 commit 40c3397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/aws/templates/aws_oidc/alarms.tf
Original file line number Diff line number Diff line change
@@ -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" {
Expand Down

0 comments on commit 40c3397

Please sign in to comment.