Add ses module and staging implementation

This commit is contained in:
Ryan Ahearn
2022-10-17 15:16:08 -04:00
parent 5ea1275f27
commit 74566b733d
6 changed files with 100 additions and 0 deletions

View File

@@ -55,3 +55,15 @@ module "egress-space" {
"steven.reilly@gsa.gov"
]
}
module "ses_email" {
source = "../shared/ses"
cf_org_name = local.cf_org_name
cf_space_name = local.cf_space_name
name = "${local.app_name}-ses-${local.env}"
recursive_delete = local.recursive_delete
aws_region = "us-gov-west-1"
email_domain = "sandbox.10x.gsa.gov"
email_receipt_error = "notify-support@gsa.gov"
}