AspNetCore.Docs.Samples/samples/aspnetcore-authz-with-ext-a.../Contoso.API/appsettings.json

16 lines
408 B
JSON
Raw Normal View History

{
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"Domain": "<Tenant name from AAD properties>.onmicrosoft.com">,
"TenantId": "<Tenant Id from AAD properties>",
"ClientId": "<Client Id from App Registration representing the API>"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}