From 55d6b05204e462d9021094dda0105dd94053605c Mon Sep 17 00:00:00 2001 From: BeckaL Date: Wed, 20 Mar 2024 14:15:05 +0000 Subject: [PATCH] BAU: Turn on call to account interventions backend in integration and production This switch controls whether we call the authentication backend for account interventions. It does not switch on the call to the account interventions service itself - that is controlled by switches in the backend. Therefore, this should have no effect. --- ci/terraform/integration.tfvars | 2 +- ci/terraform/production.tfvars | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/terraform/integration.tfvars b/ci/terraform/integration.tfvars index b37ca99c7..14f4b317f 100644 --- a/ci/terraform/integration.tfvars +++ b/ci/terraform/integration.tfvars @@ -8,7 +8,7 @@ frontend_task_definition_memory = 1024 support_international_numbers = "1" support_language_cy = "1" support_account_recovery = "1" -support_account_interventions = "0" +support_account_interventions = "1" support_auth_orch_split = "1" support_authorize_controller = "1" support_2fa_b4_password_reset = "1" diff --git a/ci/terraform/production.tfvars b/ci/terraform/production.tfvars index 372861eef..fd83e85e0 100644 --- a/ci/terraform/production.tfvars +++ b/ci/terraform/production.tfvars @@ -10,7 +10,7 @@ frontend_auto_scaling_max_count = 240 ecs_desired_count = 4 support_international_numbers = "1" support_account_recovery = "1" -support_account_interventions = "0" +support_account_interventions = "1" support_auth_orch_split = "1" support_authorize_controller = "1" support_2fa_b4_password_reset = "1"