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

16 lines
407 B
JSON
Raw Normal View History

{
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
2024-10-11 06:21:19 +08:00
"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": "*"
}