Skip to content

Commit

Permalink
[#IOPID-1961] change lollipopfn reference in session-manager (#1038)
Browse files Browse the repository at this point in the history
  • Loading branch information
arcogabbo authored Jun 25, 2024
1 parent 8eeab1d commit ec49331
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/domains/citizen-auth-app/08_session_manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src/domains/citizen-auth-app/08_session_manager_OLD.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit ec49331

Please sign in to comment.