From cc16cdb368fea8391991c040873e9a48a5b8cc2d Mon Sep 17 00:00:00 2001 From: Michael Disaro <15191694+michaeldisaro@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:08:43 +0200 Subject: [PATCH] [#IOCOM-1636] Point directly ITN functions (#1162) --- src/core/app_backend.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/app_backend.tf b/src/core/app_backend.tf index 47d81495b..50d99c7bd 100644 --- a/src/core/app_backend.tf +++ b/src/core/app_backend.tf @@ -42,7 +42,7 @@ locals { CGN_OPERATOR_SEARCH_API_KEY = data.azurerm_key_vault_secret.app_backend_CGN_OPERATOR_SEARCH_API_KEY_PROD.value EUCOVIDCERT_API_URL = "https://${data.azurerm_linux_function_app.eucovidcert.default_hostname}/api/v1" EUCOVIDCERT_API_KEY = data.azurerm_key_vault_secret.fn_eucovidcert_API_KEY_APPBACKEND.value - APP_MESSAGES_API_KEY = data.azurerm_key_vault_secret.app_backend_APP_CITIZEN_APIM_KEY.value + APP_MESSAGES_API_KEY = data.azurerm_key_vault_secret.app_backend_APP_MESSAGES_API_KEY.value LOLLIPOP_API_URL = "https://${data.azurerm_linux_function_app.lollipop_function.default_hostname}" LOLLIPOP_API_KEY = data.azurerm_key_vault_secret.app_backend_LOLLIPOP_ITN_API_KEY.value TRIAL_SYSTEM_API_URL = "https://ts-p-itn-api-func-01.azurewebsites.net" # PROD-TRIAL subscription @@ -279,19 +279,19 @@ locals { IS_APPBACKENDLI = "false" // FUNCTIONS API_URL = "https://${data.azurerm_linux_function_app.function_app[1].default_hostname}/api/v1" - APP_MESSAGES_API_URL = "https://api-app.internal.io.pagopa.it/messages/l1/api/v1" + APP_MESSAGES_API_URL = "https://io-p-itn-msgs-citizen-func-01.azurewebsites.net/api/v1" } app_settings_l2 = { IS_APPBACKENDLI = "false" // FUNCTIONS API_URL = "https://${data.azurerm_linux_function_app.function_app[1].default_hostname}/api/v1" - APP_MESSAGES_API_URL = "https://api-app.internal.io.pagopa.it/messages/l2/api/v1" + APP_MESSAGES_API_URL = "https://io-p-itn-msgs-citizen-func-02.azurewebsites.net/api/v1" } app_settings_li = { IS_APPBACKENDLI = "true" // FUNCTIONS API_URL = "https://${data.azurerm_linux_function_app.function_app[1].default_hostname}/api/v1" # not used - APP_MESSAGES_API_URL = "https://api-app.internal.io.pagopa.it/messages/l1/api/v1" # not used + APP_MESSAGES_API_URL = "https://io-p-itn-msgs-citizen-func-01.azurewebsites.net/api/v1" # not used } }