Fix Demo environment SSB AWS regions

The AWS regions for the SSBs in the demo environment were incorrect; this should fix them and get things working properly with the brokered SNS and SES services.

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2025-08-27 16:11:03 -04:00
parent 55444db56e
commit cc1909bb15

View File

@@ -60,7 +60,7 @@ 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-west-2"
aws_region = "us-gov-west-1"
email_domain = "notify.sandbox.10x.gsa.gov"
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-east-1"
aws_region = "us-gov-west-1"
monthly_spend_limit = 25
}