Microsoft Entra External ID
Create a tenant
To create a tenant, follow this guide : https://learn.microsoft.com/en-us/entra/external-id/customers/quickstart-tenant-setup
Register an application
To register an application, follow this guide : https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app
Add a redirect URI
- In the Microsoft Entra admin center, in App registrations, select your application.
- Under Manage, select Authentication.
- Select Add Redirect URI.
- Select Web.
- Type
https://localhost/neos/[CLUSTER_NAME]/signin-oidcfor your development environment. Replace[CLUSTER_NAME]with your cluster name. - Select Configure.
Add a client secret
- In the Microsoft Entra admin center, in App registrations, select your application.
- Under Manage, select Certificates & secrets.
- Under Client secrets, select New client secret.
- Type a description and set the expiration date.
- Select Add.
- Copy the client secret value.
Configure the authentication in the cluster configuration
Authentication:
Preset: MicrosoftEntraExternalID
Authority: https://[TENANT_DOMAIN_NAME].ciamlogin.com/[TENANT_ID]/v2.0
ClientId: [CLIENT_ID]
ClientSecret: [CLIENT_SECRET]
Replace :
[TENANT_DOMAIN_NAME]with theTenant domain name.[TENANT_ID]with theDirectory (tenant) ID.[CLIENT_ID]with theApplication (client) ID.[CLIENT_SECRET]with theClient secret.