From 1f682d3f53af835363d91d269e36ec4f8da44960 Mon Sep 17 00:00:00 2001 From: David Biddle Date: Wed, 30 Apr 2025 09:38:54 +0100 Subject: [PATCH 1/2] Enable SES submissions in all non-prod environments --- infra/deployments/forms/tfvars/staging.tfvars | 2 +- infra/deployments/forms/tfvars/user-research.tfvars | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/deployments/forms/tfvars/staging.tfvars b/infra/deployments/forms/tfvars/staging.tfvars index d74fbd1d1..0735dc048 100644 --- a/infra/deployments/forms/tfvars/staging.tfvars +++ b/infra/deployments/forms/tfvars/staging.tfvars @@ -71,7 +71,7 @@ forms_runner_settings = { allow_human_readonly_roles_to_assume_submissions_to_runner_role = false ses_submission_email_from_email_address = "no-reply@staging.forms.service.gov.uk" ses_submission_email_reply_to_email_address = "no-reply@staging.forms.service.gov.uk" - ses_submissions_enabled = false + ses_submissions_enabled = true } scheduled_smoke_tests_settings = { enable_scheduled_smoke_tests = true diff --git a/infra/deployments/forms/tfvars/user-research.tfvars b/infra/deployments/forms/tfvars/user-research.tfvars index c5ab3b790..a7cc802af 100644 --- a/infra/deployments/forms/tfvars/user-research.tfvars +++ b/infra/deployments/forms/tfvars/user-research.tfvars @@ -69,7 +69,7 @@ forms_runner_settings = { ses_submission_email_reply_to_email_address = "no-reply@research.forms.service.gov.uk" allow_human_readonly_roles_to_assume_submissions_to_s3_role = false allow_human_readonly_roles_to_assume_submissions_to_runner_role = false - ses_submissions_enabled = false + ses_submissions_enabled = true } scheduled_smoke_tests_settings = { enable_scheduled_smoke_tests = false From 9dd20013de988dc7f61819782a8a43fa141c9c3e Mon Sep 17 00:00:00 2001 From: David Biddle Date: Wed, 30 Apr 2025 09:39:07 +0100 Subject: [PATCH 2/2] Enable SES submissions in production --- infra/deployments/forms/tfvars/production.tfvars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/deployments/forms/tfvars/production.tfvars b/infra/deployments/forms/tfvars/production.tfvars index 1f77a1d97..1e88c12b1 100644 --- a/infra/deployments/forms/tfvars/production.tfvars +++ b/infra/deployments/forms/tfvars/production.tfvars @@ -150,7 +150,7 @@ forms_runner_settings = { allow_human_readonly_roles_to_assume_submissions_to_runner_role = false ses_submission_email_from_email_address = "no-reply@forms.service.gov.uk" ses_submission_email_reply_to_email_address = "no-reply@forms.service.gov.uk" - ses_submissions_enabled = false + ses_submissions_enabled = true } scheduled_smoke_tests_settings = { enable_scheduled_smoke_tests = true