Skip to content

Commit 4c543b3

Browse files
author
Tiago Brenck
committed
using placeholders on appsettings
1 parent f23b270 commit 4c543b3

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed
Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
{
2-
"AzureAd": {
3-
"Instance": "https://login.microsoftonline.com/",
4-
"Domain": "kalyankrishna.com",
5-
"TenantId": "4d39e77c-b0f3-4253-ae0b-7068ddd47949",
6-
"ClientId": "7f1d4458-72e7-41b5-ad81-103bd6e307b7",
7-
"CallbackPath": "/signin-oidc",
8-
"SignedOutCallbackPath ": "/signout-callback-oidc",
2+
"AzureAd": {
3+
"Instance": "https://login.microsoftonline.com/",
4+
"Domain": "[Enter the domain of your tenant, e.g. contoso.onmicrosoft.com]",
5+
"TenantId": "[Enter 'common', or 'organizations' or the Tenant Id (Obtained from the Azure portal. Select 'Endpoints' from the 'App registrations' blade and use the GUID in any of the URLs), e.g. da41245a5-11b3-996c-00a8-4d99re19f292]",
6+
"ClientId": "[Enter the Client Id (Application ID obtained from the Azure portal), e.g. ba74781c2-53c2-442a-97c2-3d60re42f403]",
7+
"CallbackPath": "/signin-oidc",
8+
"SignedOutCallbackPath ": "/signout-callback-oidc",
99

10-
// To call an API
11-
"ClientSecret": "9Y7lZKjDwKYZC3Ut1S8Dzg3TmAqVEJKUIbmIbH0jMdM="
12-
13-
},
14-
"Logging": {
15-
"LogLevel": {
16-
"Default": "Warning"
17-
}
18-
},
19-
"AllowedHosts": "*",
20-
"GraphApiUrl": "https://graph.microsoft.com/beta"
10+
// To call an API
11+
"ClientSecret": "[Copy the client secret added to the app from the Azure portal]"
12+
},
13+
"Logging": {
14+
"LogLevel": {
15+
"Default": "Warning"
16+
}
17+
},
18+
"AllowedHosts": "*",
19+
"GraphApiUrl": "https://graph.microsoft.com/beta"
2120
}

0 commit comments

Comments
 (0)