Core API and User Portal authentication setup: Microsoft Entra ID
FoundationaLLM comes with out-of-the-box support for Microsoft Entra ID authentication. This means that you can use your Microsoft Entra ID account to log in to the chat interface.
Create the Microsoft Entra ID applications
To enable Microsoft Entra ID authentication for the Core API and user portal, you need to create two applications in the Microsoft Azure portal:
- A client application that will be used by the user portal chat interface to authenticate users.
- An API application that will be used by the Core API to authenticate users.
Create the client application
Register the client application in the Microsoft Entra ID admin center
Sign in to the Microsoft Entra ID admin center as at least a Cloud Application Administrator.
Browse to Identity > Applications > App registrations.
On the page that appears, select + New registration.
When the Register an application page appears, enter the following name for your application FoundationaLLM-User-Portal.
Under Supported account types, select Accounts in this organizational directory only.
Select Register.
The application's Overview pane displays upon successful registration. Record the Application (client) ID and Directory (tenant) ID to add to your App Configuration settings later.
Add a redirect URI to the client application
Under Manage, select Authentication.
Under Platform configurations, select Add a platform. In the pane that opens, select Single-page application. This is for the Vue.js chat application.
Add a Redirect URI under Single-page application for your deployed Vue.js application. Enter
<YOUR_CHAT_APP_URL>/signin-oidc
, replacing<YOUR_CHAT_APP_URL>
with the chat UI application URL obtained in the Pre-requisites section above. For example, it should look something likehttps://d85a09ce067141d5807a.eastus.aksapp.io/signin-oidc
for an AKS deployment, orhttps://fllmaca002chatuica.graybush-c554b849.eastus.azurecontainerapps.io/signin-oidc
for an ACA deployment.Add a Redirect URI under Single-page application for local development of the Vue.js application:
http://localhost:3000/signin-oidc
.
If you wish to configure authentication in Postman for executing calls against the Core API, you will need to add a Redirect URI under Mobile and desktop applications for Postman. Enter https://oauth.pstmn.io/v1/callback
for the URI. To do this, complete the following steps:
Under Platform configurations, select Add a platform. In the pane that opens, select Mobile and desktop applications.
Enter
https://oauth.pstmn.io/v1/callback
for the Custom redirect URIs value.Select Configure to apply the changes.
Implicit grant and hybrid flows for the client application
Check Access tokens and ID tokens under Implicit grant.
Select Configure to apply the changes (if the button is present).
Select Save at the bottom of the page to save the changes.
Update the client application manifest
Under Manage, select Manifest.
Locate the
accessTokenAcceptedVersion
property and set its value to2
.Select Save at the top of the page to save the changes.
Create the API application
Register the API application in the Microsoft Entra ID admin center
Return to the Microsoft Entra ID admin center.
Browse to Identity > Applications > App registrations and select + New registration.
For Name, enter the name FoundationaLLM-Core-API for the application.
Under Supported account types, select Accounts in this organizational directory only.
Select Register.
The application's Overview pane displays upon successful registration. Record the Application (client) ID and Directory (tenant) ID to add to your App Configuration settings later.
Implicit grant and hybrid flows for the API application
Select Authentication under Manage in the left-hand menu.
Select + Add a platform under Platform configurations. In the pane that opens, select Web.
Under "Redirect URIs", enter
http://localhost
and select Configure. Please note that this value is not used in the FoundationaLLM solution, but is required in order to be able to select the access and ID tokens in the next step.Check Access tokens and ID tokens under Implicit grant.
Select Configure to apply the changes.
Select Save at the bottom of the page to save the changes.
Expose an API for the API application
Under Manage, select Expose an API > Add a scope. For Application ID URI, make sure to use
api://FoundationaLLM-Core
, then enter the following details:- Scope name:
Data.Read
- Who can consent?: Admins and users
- Admin consent display name:
Read data on behalf of users
- Admin consent description:
Allows the app to read data on behalf of the signed-in user.
- User consent display name:
Read data on behalf of the user
- User consent description:
Allows the app to read data on behalf of the signed-in user.
- State: Enabled
- Scope name:
Select Add scope to complete the scope addition.
Copy the Scope name value to add to your App Configuration settings later. For example, it should look something like
api://FoundationaLLM-Core/Data.Read
.
Add authorized client application
While still in the Expose an API section, select + Add a client application.
Paste the Application (client) ID of the client application that you created earlier.
Check the
Data.Read
authorized scope that you created.Select Add application to complete the client application addition.
Update the API application manifest
Under Manage, select Manifest.
Locate the
accessTokenAcceptedVersion
property and set its value to2
.Select Save at the top of the page to save the changes.
Add API permissions for the client application
Browse to Identity > Applications > App registrations.
Select the
FoundationaLLM-Client
application that you created earlier.Select API permissions.
Select + Add a permission under the "Configured permissions" section.
In the "Request API permissions" pan, select the My APIs tab, then select the
FoundationaLLM
API application.Select the
Data.Read
scope that you created earlier, then select Add permissions.
The client application's configured permissions should now look like the following: