Skip to end of banner
Go to start of banner

OIDC Auth Module App Setting Tables

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Key

Description

<appSettings> 
    <add key="ida:ClientId" value="<AZURE_APP_CLIENT_ID>"/>
    <add key="ida:ClientSecret" value="<AZURE_APP_CLIENT_SECRET>"/>
    <add key="ida:Authority" value="<AZURE_APP_AUTHORITY>"/>
    <add key="ida:RedirectUri" value="https://<HOSTED_WEB_APP_DOMAIN>/oidc/redeemcode.aspx"/>
    <add key="ida:PostLogoutRedirectUri" value="https://<HOSTED_WEB_APP_DOMAIN>"/>
    <add key="ida:CacheTimeoutInMinutes" value="30"/>
</appSettings>

AZURE_APP_CLIENT_ID

Client ID of the app registration

AZURE_APP_CLIENT_SECRET

Client Secret of the app registration

TENANT_ID

Tenant ID of the Azure tenant

AZURE_APP_AUTHORITY

Global Azure AD authentication endpoint

If single tenant app, https://login.microsoftonline.com/<TENANT_ID>/v2.0/>

If multi-tenant app, https://login.microsoftonline.com/common/v2.0/

HOSTED_WEB_APP_DOMAIN

Domain name of the hosted web application

  • No labels