Add ses module and staging implementation

This commit is contained in:
Ryan Ahearn
2023-01-31 12:13:15 -05:00
parent 5ea1275f27
commit 74566b733d
6 changed files with 100 additions and 0 deletions
+11
View File
@@ -55,3 +55,14 @@ 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-west-2"
email_receipt_error = "notify-support@gsa.gov"
}