From e62b257061759aec8d356c7f9d11da2e8b054ced Mon Sep 17 00:00:00 2001 From: Ryan Ahearn Date: Tue, 21 Feb 2023 16:48:42 -0500 Subject: [PATCH] Update sandbox sns terraform now that service sharing is blocked --- terraform/sandbox/main.tf | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/terraform/sandbox/main.tf b/terraform/sandbox/main.tf index fc44306ee..b1f7770b2 100644 --- a/terraform/sandbox/main.tf +++ b/terraform/sandbox/main.tf @@ -67,17 +67,13 @@ module "ses_email" { email_receipt_error = "notify-support@gsa.gov" } -############################################################### -# By default, sandbox uses the shared service instance from the -# staging space -############################################################### -# 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 = 1 -# } +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-east-2" + monthly_spend_limit = 1 +}