Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(service): add appsettings for the yt01 environment #1329

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions src/Digdir.Domain.Dialogporten.Service/appsettings.yt01.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
}
}
Loading