docs/content/stable/yugabyte-platform/security/authentication/oidc-authentication-aad.md
This section describes how to configure a YugabyteDB Anywhere (YBA) universe to use OIDC-based authentication for YugabyteDB YSQL database access using Azure AD (also known as Microsoft Entra ID) as the Identity Provider (IdP).
After OIDC is set up, users can sign in to the YugabyteDB universe database using their JSON Web Token (JWT) as their password.
Note that the yugabyte privileged user will continue to exist as a local database user even after OIDC-based authentication is enabled for a universe.
Learn more
By default, the Subject claim is used as the value to determine the role to assign to users for database access. In addition to the standard claims for token expiration, subject, and issuer, you have the option to use a non-standard claim (other than Subject) to determine role assignment. That is, the values of this claim will map the user to the database roles. This claim is denoted as jwt_matching_claim_key.
YugabyteDB expects the token created by the IdP to contain the following standard claims as well as the optional jwt_matching_claim_key to identify the end user and grant them the right access inside databases:
jwt_matching_claim_key, claim key, and values - these could be groups, roles, email, and so forth. Optionally, the subject claim can be used as the claim key.The claims included in the token and chosen for user authorization will vary depending on your requirements.
For example, to use group memberships as the determining factor for access and role assignment, you would include the groups claim in the initial token sent to the database. Note that the Subject claim can also be used to map the user to the PostgreSQL role.
These token claims are configured in the Azure AD application registration.
The following illustration shows an example of Azure token configuration to ensure the right groups or roles claims are included in the token. Note that these options are available in higher Azure AD tiers.
The following is an example of a decoded JWT with groups claims (the Group GUID is used in Azure AD OIDC tokens):
"awd": "e12c03b1-7463-8e23-94d2-8d71f17ab99b",
"iss": "https://login.microsoftonline.com/733dee2h-cb2e-41ab-91f2-29e2af034ffe/v2.0",
"iat": 1669657223, "nbf": 1669657223, "exp": 1669651124,
"groups": [
"a12d04b1-7463-8e23-94d2-8d71f17ab99b",
"c22b03b1-2746-8d34-54b1-6d32f17ba36b",
],
"oid": "b12a45b2-7463-5e76-32d3-9d31f15ab77b",
"sub": "C12a45bGc463_ADLN632d39d31f15ab77b",
"tid": "a42a45c3-4728-4f98-25d3-6d63f15ab36c",
"ver": "2.0",
"wids" [
"b12d04b1-7463-8e23-94d2-8d71f17ab99b",
"f22a03c1-2746-8d34-54b1-6d32f17ba36b",
]
Note that GUIDs are not supported for YSQL usernames. Use regex rules in user name maps in the yb_ident.conf file to convert group GUIDs to roles. See ysql_ident_conf_csv.
The following illustration shows an example of Azure app roles configuration.
The following shows an example of a decoded JWT with app roles claims:
"awd": "e12c03b1-7463-8e23-94d2-8d71f17ab99b",
"iss": "https://login.microsoftonline.com/733dee2h-cb2e-41ab-91f2-29e2af034ffe/v2.0",
"iat": 1669657223, "nbf": 1669657223, "exp": 1669651124,
"name": "Fred Summers",
"preferred_username": "[email protected]",
"oid": "b12a45b2-7463-5e76-32d3-9d31f15ab77b",
"roles": [
"a12d04b1-7463-8e23-94d2-8d71f17ab99b",
"c22b03b1-2746-8d34-54b1-6d32f17ba36b",
],
"sub": "C12a45bGc463_ADLN632d39d31f15ab77b",
"tid": "a42a45c3-4728-4f98-25d3-6d63f15ab36c",
"ver": "2.0",
"wids" [
"b12d04b1-7463-8e23-94d2-8d71f17ab99b",
"f22a03c1-2746-8d34-54b1-6d32f17ba36b",
]
For more information on configuring group claims and app roles, refer to Configuring group claims and app roles in tokens in the Azure documentation.
To enable OIDC authentication with Azure AD, you need to do the following:
yb_hba.conf and yb_ident.conf files.You register your YugabyteDB Anywhere instance as an application in Azure. You will use the application's tenant ID, client ID, and client secret to configure OIDC in YugabyteDB Anywhere.
To register an application, do the following:
In the Azure console, navigate to App registrations and click New registration.
Enter a name for the application.
Select the tenant for the application.
Set the redirect URI. This is where the IdP redirects after authentication. The URI is in the following form:
https://<YBA_IP_Address>/api/v1/callback?client_name=OidcClient
Click Register.
After the application is registered, you can obtain the tenant ID and client ID.
Click Add a certificate or secret.
Select Client secrets and click New client secret.
Enter a description and set the expiry for the secret, and then click Add.
Copy the secret value and keep it in a secure location.
For more information, refer to Register an application with the Microsoft identity platform in the Azure documentation.
To configure YugabyteDB Anywhere for OIDC, you need to be signed in as a Super Admin. You need your Azure application client ID, client secret, and tenant ID.
To enable OIDC authentication in YugabyteDB Anywhere, do the following:
Navigate to Admin > Access Management > User Authentication and select ODIC configuration.
Under OIDC configuration, configure the following:
login.microsoftonline.com/<tenant_id>/v2.0/.well-known/openid-configuration.openid email profile. If you are using the Refresh Token feature to allow the Azure server to return the refresh token (which can be used by YBA to refresh the login), enter openid offline_access profile email instead.preferred_username.Click Save.
To access a universe via OIDC, you need to set the following flags on the universe:
When the flags are set, YugabyteDB configures the ysql_hba.conf and yb_ident.conf files on the database nodes and creates the files that hold the JWKS keys for token validation.
For information on configuring flags in YugabyteDB Anywhere, refer to Edit configuration flags.
The ysql_hba_conf_csv flag must be set to support using JWTs for authentication. The parameters to include in the configuration file record are described in the following table:
| Parameter | Description |
|---|---|
jwt_map | The user-name map used to translate claim values to database roles. Optional if you aren't using the default Subject claim values. |
jwt_issuers | The first part of the discovery URL (login.microsoftonline.com/<tenant_id>/v2.0). |
jwt_audiences | The audience or target app for the token, which in this case is the client ID of the application you registered. |
jwt_matching_claim_key | The email attribute you set (for example, preferred_username). Optional if you aren't using the default Subject claim values. |
jwt_jwks_path | The JSON Web Key Set (JWKS) is a set of keys containing the public keys used to verify any JWT. These can be uploaded as entries in a single file. When configuring the flag in YugabyteDB Anywhere, click Add JSON web key set (JWKS) to upload the JWKS. |
jwt_jwks_url | The URL where YugabyteDB can retrieve the JWKS for verifying JWTs. This parameter is an alternative to jwt_jwks_path. You must set either jwt_jwks_path or jwt_jwks_url to enable JWT verification in YugabyteDB. |
The following illustration shows an example of setting the ysql_hba_conf_csv flag in YugabyteDB Anywhere:
The following shows an example ysql_hba_conf_csv flag configuration for OIDC:
host all all 0.0.0.0/0 jwt_map=map1 jwt_audiences=""<client_id>"" jwt_issuers=""https://login.microsoftonline.com/<tenant_id>/v2.0"" jwt_matching_claim_key=""preferred_username""
For more information on host authentication in YugabyteDB using ysql_hba_conf_csv, refer to Host-based authentication.
This flag is used to add translation regex rules that map token claim values to PostgreSQL roles. The flag settings are used as records in the yb_ident.conf file as user-name maps. This file is used identically to pg_ident.conf to map external identities to database users. For more information, refer to User name maps in the PostgreSQL documentation.
The following illustration shows an example flag configuration:
The following are examples of possible rules:
Map a single user
map1 [email protected] user
Map multiple users
map2 /^(.*)@devadmincloudyugabyte\.onmicrosoft\.com$ \1
Map Roles <-> Users
map1 OIDC.Test.Read read_only_user
{{< readfile "/stable/yugabyte-platform/security/authentication/oidc-manage-users-include.md" >}}