From f476fa05b3eed6ee64cc04043ed14e446120c51f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Skogstad?= Date: Tue, 27 Feb 2024 16:42:04 +0100 Subject: [PATCH] chore: Use webhook sink URL for events in test (#493) Changing test environment base URI for Altinn so that we don't push events to tt02 from two environments now that staging is up and running. The URL is in the source key vault. --- src/Digdir.Domain.Dialogporten.WebApi/appsettings.test.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Digdir.Domain.Dialogporten.WebApi/appsettings.test.json b/src/Digdir.Domain.Dialogporten.WebApi/appsettings.test.json index 433f19157..51b5a2dbe 100644 --- a/src/Digdir.Domain.Dialogporten.WebApi/appsettings.test.json +++ b/src/Digdir.Domain.Dialogporten.WebApi/appsettings.test.json @@ -20,12 +20,12 @@ "Scope": "altinn:events.publish altinn:events.publish.admin", // -------------------------- - // Any additional settings are specific for the selected client definition type. + // Any additional settings are specific for the selected client definition type. // See below for examples using other types. "EncodedJwk": "TODO: Add to local secrets" }, "Altinn": { - "BaseUri": "https://platform.tt02.altinn.no/", + "BaseUri": "Secret webhook sink URL in source key vault", "SubscriptionKey": "TODO: Add to local secrets" } },