Provision sns via terraform in staging

This commit is contained in:
Ryan Ahearn
2023-02-09 16:23:37 -05:00
parent 573c028988
commit 52e6d25b13
7 changed files with 123 additions and 0 deletions

View File

@@ -66,3 +66,14 @@ module "ses_email" {
aws_region = "us-west-2"
email_receipt_error = "notify-support@gsa.gov"
}
module "sns_sms" {
source = "../shared/sns"
cf_org_name = local.cf_org_name
cf_space_name = local.cf_space_name
name = "${local.app_name}-sns-${local.env}"
recursive_delete = local.recursive_delete
aws_region = "us-west-2"
monthly_spend_limit = 25
}