Skip to content

Commit

Permalink
adding sender id to SNS (#1398)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben851 authored Jun 25, 2024
1 parent e312e5f commit 4e949b6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions aws/common/sns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ resource "aws_sns_sms_preferences" "update-sms-prefs" {
delivery_status_success_sampling_rate = 100
monthly_spend_limit = var.sns_monthly_spend_limit
usage_report_s3_bucket = module.sns_sms_usage_report_bucket.s3_bucket_id
default_sender_id = "CANADA-CA"
default_sms_type = "Transactional"
}

resource "aws_sns_sms_preferences" "update-sms-prefs-us-west-2" {
Expand All @@ -143,6 +145,8 @@ resource "aws_sns_sms_preferences" "update-sms-prefs-us-west-2" {
delivery_status_success_sampling_rate = 100
monthly_spend_limit = var.sns_monthly_spend_limit_us_west_2
usage_report_s3_bucket = module.sns_sms_usage_report_bucket_us_west_2.s3_bucket_id
default_sender_id = "CANADA-CA"
default_sms_type = "Transactional"
}

resource "aws_sns_topic_subscription" "sns_alert_ok_us_west_2_to_lambda" {
Expand Down

0 comments on commit 4e949b6

Please sign in to comment.