diff --git a/src/domains/citizen-auth-app/08_session_manager.tf b/src/domains/citizen-auth-app/08_session_manager.tf index cd0561ffa..14058e3ac 100644 --- a/src/domains/citizen-auth-app/08_session_manager.tf +++ b/src/domains/citizen-auth-app/08_session_manager.tf @@ -128,11 +128,11 @@ locals { # Functions Lollipop config FF_LOLLIPOP_ENABLED = "1" LOLLIPOP_API_BASE_PATH = "/api/v1" - LOLLIPOP_API_URL = var.lollipop_enabled ? "https://${module.function_lollipop[0].default_hostname}" : "" + LOLLIPOP_API_URL = "https://${module.function_lollipop_itn.default_hostname}" LOLLIPOP_API_KEY = data.azurerm_key_vault_secret.functions_lollipop_api_key.value LOLLIPOP_REVOKE_STORAGE_CONNECTION_STRING = data.azurerm_storage_account.lollipop_assertion_storage.primary_connection_string - LOLLIPOP_REVOKE_QUEUE_NAME = "pubkeys-revoke" + LOLLIPOP_REVOKE_QUEUE_NAME = "pubkeys-revoke-v2" # Fast Login config FF_FAST_LOGIN = "ALL" @@ -254,7 +254,7 @@ module "session_manager_weu_staging" { location = var.location always_on = true - node_version = "20-lts" + node_version = "18-lts" app_command_line = "npm run start" health_check_path = "/healthcheck" diff --git a/src/domains/citizen-auth-app/08_session_manager_OLD.tf b/src/domains/citizen-auth-app/08_session_manager_OLD.tf index 2447ba671..3a442fc64 100644 --- a/src/domains/citizen-auth-app/08_session_manager_OLD.tf +++ b/src/domains/citizen-auth-app/08_session_manager_OLD.tf @@ -66,7 +66,7 @@ module "session_manager_staging" { location = var.location always_on = true - node_version = "18-lts" + node_version = "20-lts" app_command_line = "npm run start" health_check_path = "/healthcheck"