From 4107d99197550ce616d1219960703f051adfae0d Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Tue, 22 Oct 2024 13:20:05 +0200 Subject: [PATCH] fix(service): add yt01 appsettings --- .../appsettings.yt01.json | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/Digdir.Domain.Dialogporten.Service/appsettings.yt01.json diff --git a/src/Digdir.Domain.Dialogporten.Service/appsettings.yt01.json b/src/Digdir.Domain.Dialogporten.Service/appsettings.yt01.json new file mode 100644 index 000000000..3ba393988 --- /dev/null +++ b/src/Digdir.Domain.Dialogporten.Service/appsettings.yt01.json @@ -0,0 +1,47 @@ +{ + "Infrastructure": { + "MassTransit": { + "Host": "TODO: Add to local secrets" + }, + "Redis": { + "ConnectionString": "TODO: Add to local secrets" + }, + "DialogDbConnectionString": "TODO: Add to local secrets", + // Settings from appsettings.json, environment variables or other configuration providers. + // The first three are always mandatory for all client definitions types + "Maskinporten": { + // 1. Valid values are test and prod + "Environment": "test", + // 2. Client Id/integration as configured in Maskinporten + "ClientId": "TODO: Add to local secrets", + // 3. Scope(s) requested, space seperated. Must be provisioned on supplied client id. + "Scope": "altinn:events.publish altinn:events.publish.admin altinn:register/partylookup.admin altinn:authorization/authorize.admin altinn:accessmanagement/authorizedparties.admin", + // -------------------------- + // 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.yt01.altinn.cloud/", + "EventsBaseUri": "https://platform.yt01.altinn.cloud/", + "SubscriptionKey": "TODO: Add to local secrets" + } + }, + "Application": { + "Dialogporten": { + "BaseUri": "https://platform.yt01.altinn.cloud/dialogporten", + "Ed25519KeyPairs": { + "Primary": { + "Kid": "TODO: Add to local secrets", + "PrivateComponent": "TODO: Add to local secrets", + "PublicComponent": "TODO: Add to local secrets" + }, + "Secondary": { + "Kid": "TODO: Add to local secrets", + "PrivateComponent": "TODO: Add to local secrets", + "PublicComponent": "TODO: Add to local secrets" + } + } + } + } +} \ No newline at end of file