1. Create an App Registration in the Azure Portal.

2. In the App Registration, you’ll need to add Composable redirect urls. There are 2 different urls that Composable may request Microsoft Online to redirect back to. One is the Composable login page, and the other is the Composable register page if the user hasn’t setup an account in Composable yet.
The urls should be in the below format.
https://mycomposableinstance.xxxx.com/CompAnalytics/Account/AzureADRegister.aspx
https://mycomposableinstance.xxxx.com/CompAnalytics/Account/AzureADLogin.aspx

3. Ensure the ID Tokens box is checked.

4. Next, you’ll need to update 4 keys in Composable’s Web.config.
<configuration>
<appSettings>
<add key="AzureADAuthEnabled" value="True"/>
<add key="AzureADAuthAutoApprove" value="True"/>
<add key="AzureADAuthClientId" value="xxguidxx"/>
<add key="AzureADAuthTenantId" value="xxguidxx"/>
….
The AzureADAuthClientId (Application (Client Id)) and AzureADAuthTenantId (Directory (tenant) Id) values are available in the Azure App Registration Overview page. If AzureADAuthAutoApprove is set to true, users that self-register will be auto approved. If false, then an administrator will need to approve the account prior to them logging in



