11{
22 "AzureAd" : {
3- "Instance" : " https://login.microsoftonline.com/" ,
4- "Domain" : " msidlab4.onmicrosoft.com" ,
5- "TenantId" : " f645ad92-e38d-4d1a-b510-d1b09a74a8ca" ,
6- "ClientId" : " 9a192b78-6580-4f8a-aace-f36ffea4f7be" ,
7- //"CallbackPath": "/signin-oidc",
8- //"SignedOutCallbackPath": "/signout-callback-oidc",
9- "ClientCertificates" : [
10- {
11- "SourceType" : " KeyVault" ,
12- "KeyVaultUrl" : " https://webappsapistests.vault.azure.net" ,
13- "KeyVaultCertificateName" : " Self-Signed-5-5-22"
14- }
15- ],
16- "ClientCapabilities" : [
17- " CP1"
18- ],
19- "CallbackPath" : " /api/auth/signin-oidc" ,
20- "SignedOutCallbackPath" : " /api/auth/signout-oidc"
3+ "Instance": "https://login.microsoftonline.com/",
4+ "TenantId": "Enter_the_Tenant_Id_Here",
5+ "ClientId": "Enter_the_Application_Id_Here",
6+ "ClientCredentials": [
7+ {
8+ "SourceType": "ClientSecret",
9+ "ClientSecret": "Enter_the_Client_Secret_Here"
10+ }
11+ // {
12+ // "SourceType": "StoreWithDistinguishedName",
13+ // "CertificateStorePath": "CurrentUser/My",
14+ // "CertificateDistinguishedName": "CN=CallGraphBFF"
15+ // }
16+ ],
17+ "ClientCapabilities": [
18+ "CP1"
19+ ],
20+ "CallbackPath": "/api/auth/signin-oidc",
21+ "SignedOutCallbackPath": "/api/auth/signout-oidc"
2122 },
2223 "DownstreamApi" : {
23- "BaseUrl" : " https://graph.microsoft.com/v1.0" ,
24- "Scopes" : " User.Read"
24+ "BaseUrl": "https://graph.microsoft.com/v1.0",
25+ "Scopes": "User.Read"
2526 },
2627 "Logging" : {
27- "LogLevel" : {
28- "Default" : " Information" ,
29- "Microsoft" : " Warning" ,
30- "Microsoft.Hosting.Lifetime" : " Information"
31- }
28+ "LogLevel": {
29+ "Default": "Information",
30+ "Microsoft": "Warning",
31+ "Microsoft.Hosting.Lifetime": "Information"
32+ }
3233 },
3334 "AllowedHosts" : " *"
34- }
35+ }
0 commit comments