From 9d2a23ba5f26d601aa81bc45247da38dac49753a Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Thu, 28 Aug 2025 10:23:11 -0400 Subject: [PATCH] Update Demo SSB References Again After double checking the configuration of the Notify SSB and how the brokerpaks are used with it, the configuration of demo should actually match that of our staging environment, not production because the demo environment is using the staging SSB. This changeset updates the Demo SSB configuration to match that. Signed-off-by: Carlo Costino --- terraform/demo/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/demo/main.tf b/terraform/demo/main.tf index 5cfaa5090..c2adcdca5 100644 --- a/terraform/demo/main.tf +++ b/terraform/demo/main.tf @@ -60,8 +60,8 @@ module "ses_email" { cf_org_name = local.cf_org_name cf_space_name = local.cf_space_name name = "${local.app_name}-ses-${local.env}" - aws_region = "us-gov-west-1" - email_domain = "notify.sandbox.10x.gsa.gov" + aws_region = "us-west-2" + mail_from_subdomain = "mail" email_receipt_error = "notify-support@gsa.gov" } @@ -71,6 +71,6 @@ module "sns_sms" { cf_org_name = local.cf_org_name cf_space_name = local.cf_space_name name = "${local.app_name}-sns-${local.env}" - aws_region = "us-gov-west-1" + aws_region = "us-west-2" monthly_spend_limit = 25 }