Skip to content

Commit

Permalink
Update appsettings.json
Browse files Browse the repository at this point in the history
The onboarding of this file created a bug, referencing CertificateThumbprint when no string existed. Added brackets and correct fields while removing the ClientSecret field.
  • Loading branch information
cilwerner authored Mar 24, 2023
1 parent 5fdce0a commit 2dfed09
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion web-app-aspnet/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ For more info see https://aka.ms/dotnet-template-ms-identity-platform
"Instance": "https://login.microsoftonline.com/",
"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]",
"ClientId": "[Enter the Client Id (Application ID obtained from the Azure portal), e.g. ba74781c2-53c2-442a-97c2-3d60re42f403]",
"ClientSecret": "[Copy the client secret added to the app from the Azure portal]",
"ClientCertificates": [
{
"SourceType": "StoreWithThumbprint",
"CertificateStorePath": "CurrentUser/My",
"CertificateThumbprint": "[Enter the certificate thumbprint obtained from the Azure portal]"
}
],
"CallbackPath": "/signin-oidc"
},
Expand Down

0 comments on commit 2dfed09

Please sign in to comment.