Skip to content

Commit

Permalink
Update_151124_2
Browse files Browse the repository at this point in the history
  • Loading branch information
Buckingham authored and Buckingham committed Nov 15, 2024
1 parent 4f1c394 commit 0d12fd2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions terraform/environments/ppud/sns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ resource "aws_sns_topic_subscription" "cw_subscription" {
# endpoint = aws_secretsmanager_secret_version.support_email_account[0].secret_string
}

# SMS topic subscription to be implemented temporarily over the Christmas period
resource "aws_sns_topic_subscription" "cw_sms_subscription" {
count = local.is-production == true ? 1 : 0
topic_arn = aws_sns_topic.cw_alerts[0].arn
protocol = "sms"
endpoint = "+447903642202"
}

# PreProduction - Cloud Watch

resource "aws_sns_topic" "cw_uat_alerts" {
Expand Down

0 comments on commit 0d12fd2

Please sign in to comment.