Set up the OpenID Connect (OIDC) Authentication for Release
This topic describes how to configure Release authentication using the OpenID Connect (OIDC) protocol. OpenID Connect (OIDC) is an identity layer built on top of the OAuth 2.0 protocol and supported by various OAuth 2.0 providers.
- OIDC defines a sign-in flow that enables a client application to authenticate a user. User identity information is encoded in a secure JSON Web Token (JWT), called ID token.
- You can log into Release using various Identity providers that support the OIDC authentication protocol, such as Digital.ai Identity Service, OKTA, Keycloak, and Azure Active Directory (Office 365).
- You can easily add an additional layer of security for Release by enabling multi-factor authentication (MFA).
- Using MFA, and depending on your identity provider settings, users are required to acknowledge a verification phone call, text message, or app notification on their smart phones after correctly entering their passwords.
Digital.ai Identity Service
- You can directly connect your Release instance with your OIDC-compliant IDP or you can also choose to use the more robust and flexible Digital.ai Identity Service.
- To simplify the sso configuration and customer onboarding processes, Digital.ai has introduced its own Digital.ai Identity Service that supports multiple protocols.
- We recommend you integrate Digital.ai Release with external IDPs via the Digital.ai Identity Service as it supports multiple protocols, configuration changes with almost nil downtime, and also supports user-friendly workflows for common tasks.
- While setting up the Digital.ai Identity Service involves some manual tasks at the moment, the idea is to let customers plug-and-play with the Digital.ai Identity Service as they come on board with Digital.ai Release.
- For more information, see Integrate Release with Digital.ai Platform Identity Service.
Requirements
The Release OIDC Authentication plugin must be installed.
Do you want to login as an internal user?
- The Release OIDC Authentication plugin offers a seamless user experience by automatically redirecting an unauthenticated user to the Identity Provider's login page.
- This does not allow you to sign in directly as an Internal User. If you want to sign in as an Internal User, you can go directly to the login page,
xl-release.example.com/login
, for example. - The
xl-release.example.com/login
page is also an entry point when a local account has an identical username with another user from your Identity Provider. The user is automatically redirected to the page with a corresponding message. - OpenID Connect provider and Release instances should be time synchronized. For example, on NTP.
Configure Digital.ai Release for OIDC Authentication
Do this on the Digital.ai Release server.
Step 1—Download and Install the Release OIDC Authentication Plugin
The Release OIDC Authentication plugin is bundled with the distribution for Release 10.1.0 and later. You can also download it from the distribution site if required and follow install a plugin steps in Release.
Step 2—Configure the OIDC Authentication Plugin
This step includes retrieving metadata, modifying the config file, and setting up the post-login URL.
-
Retrieve the metadata using a discovery endpoint.
- The discovery endpoint is a static page that you use to retrieve metadata about your OIDC Identity Provider.
- In most of the cases the discovery endpoint is available through
/.well-known/openid-configuration
relative to the base address of your Identity Provider. - For example:
https://login.microsoftonline.com/xebialabs.com/.well-known/openid-configuration
. - The field names and values are defined in the OpenID Connect Discovery Specification.
- In OIDC there are notions called scopes and claims that define the settings to obtain information about a specific user, such as the username, name, email, and group.
You can provide the required claims using the following configuration properties:
-
rolesClaim
- In Release, the OIDC roles become principals that you can assign to roles inside Release. Each time you login, therolesClaim
is matched to the principal assigned to the role in Release. This grants access according to the permissions of the role in Release.Nested Claims for Release Roles Mapping:
- Digital.ai Release supports nested claims for Release roles mapping. The
.
acts as a path separator and if needed can be escaped with backslash\\.
.
{
...
"realm_access": {
"roles": [
"default-roles-digitalai",
"dai-user",
"offline_access",
"uma_authorization"
]
}...
}- Nested claim such as
rolesClaim="realm_access.roles"
are supported, where.
acts as a path separator. - To prevent nesting and use dot literally, escape the dot with backslash (\.). For example,
rolesClaim="realm_access\\.roles"
- Digital.ai Release supports nested claims for Release roles mapping. The
-
userNameClaim
- A unique username for both internal and external users. You cannot sign in with a user if a local account with the same username exists. -
emailClaim
- An email address is required to send notifications. For example, you can be notified when a task that is assigned to you starts. -
fullNameClaim
- The full name of the user profile. -
externalIdClaim
- A unique external ID such as the user's employee ID or GitHub ID. This is an optional claim.
Notes:
- The
userNameClaim
,emailClaim
, andfullNameClaim
properties are used to create the user profile when you log on to Release for the first time. Thereafter, profile update happens every time the user logs on to Digital.ai Release. Roles are used dynamically.- Optionally, you can also add the
externalIdClaim
—which can be the user's employee ID or GitHub ID, for example—to the user profile.- The fields described above must be present in the scopes that you can provide from scopes.
- The
issuer
,accessTokenUri
,userAuthorizationUri
, andlogoutUri
options are also usually presented in the JSON metadata that the Identity Provider server publishes at the discovery endpoint.- The
redirectUri
endpoint must always point to the/oidc-login
Release endpoint. TheredirectUri
is an endpoint where authentication responses can be sent and received by Release. It must exactly match one of theredirect_uris
you registered in OKTA and Azure AD portal and it must be URL encoded. For Keycloak you can register a pattern forredirect_uri
from the Keycloak Admin Panel (For example, you can provide a mask such as:http://example.com/mask**
that matcheshttp://example.com/mask/
orhttp://example.com/mask
).
-
Modify the
xl-release.conf
file.To configure the OIDC Authentication plugin, modify the
XL_RELEASE_SERVER_HOME/conf/xl-release.conf
file by adding axl.security.auth.providers
section. Here's an example.xl {
security {
auth {
providers {
oidc {
clientId="<your client id here>"
clientSecret="<your client secret here>"
issuer="<OpenID Provider Issuer here>"
redirectUri="https://xl-release.example.com/oidc-login"
postLogoutRedirectUri="https://xl-release.example.com/oidc-login"
scopes=["<your>", "<scopes>", "<here>"]
rolesClaim="<your roles claim here>"
userNameClaim="<your username claim here>"
emailClaim="<your email claim here>"
fullNameClaim="<your fullName claim here>"
externalIdClaim="<user's employee ID or GitHub ID, for example>" //This is an optional claim
}
}
}
}
}The above configuration automatically fetches the required configuration from the discovery endpoint. The discovery endpoint is a static page that you use to retrieve metadata about your OIDC Identity Provider.
In most of the cases, the discovery endpoint is available through
/.well-known/openid-configuration
relative to the base address of your Identity Provider. For example:https://login.microsoftonline.com/xebialabs.com/.well-known/openid-configuration
.For more information, see OpenID Connect Discovery Specification.
-
Override the values from the discovery endpoint.
It is possible to override the values for
keyRetrievalUri
,accessTokenUri
,userAuthorizationUri
, andlogoutUri
by adding the values explicitly. This is useful if the discovery endpoint is not reachable. Here's an example.xl {
security {
auth {
providers {
oidc {
clientId="<your client id here>"
clientSecret="<your client secret here>"
clientAuthMethod="<your client authentication method here>"
issuer="<OpenID Provider Issuer here>"
keyRetrievalUri="<The jwks_uri to retrieve keys>"
accessTokenUri="<The redirect URI to use for returning the access token>"
userAuthorizationUri="<The authorize endpoint to request tokens or authorization codes via the browser>"
logoutUri="<The logout endpoint to revoke token via the browser>"
redirectUri="https://xl-release.example.com/oidc-login"
postLogoutRedirectUri="https://xl-release.example.com/oidc-login"
scopes=["<your>", "<scopes>", "<here>"]
idTokenJWSAlg="<The ID token signature verification algorithm>"
rolesClaim="<your roles claim here>"
userNameClaim="<your username claim here>"
emailClaim="<your email claim here>"
fullNameClaim="<your fullName claim here>"
externalIdClaim="<user's employee ID or GitHub ID, for example>" //This is an optional claim
// proxyPort and proxyHost are optional parameters -
// available in Release 8.2.0 and later.
proxyHost="your-proxy-host-here.example.com"
proxyPort="3128"
}
}
}
}
} -
Set up the post-logout URL.
- The logout works by directing the user’s browser to the end-session endpoint of the OpenID Connect provider, with the logout request parameters encoded in the URL query string.
- If you need to redirect to the login page after logout, you can use your
redirectUri
as thepostLogoutRedirectUri
.
-
Do you want to send additional parameters to the OIDC provider?
You can send additional parameters to the OIDC provider as part of the OIDC authentication request.
Here's an example, in which you can find two additional parameters—param1 and param2.
xl {
security {
auth {
providers {
oidc {
clientId = "aiRelease"
clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
issuer = "<OpenID Provider Issuer here>"
redirectUri = "https://xl-release.example.com/oidc-login"
postLogoutRedirectUri = "https://xl-release.example.com/oidc-login"
scopes = ["openid", "workforce"]
rolesClaim = "ad_groups"
userNameClaim = "sub"
emailClaim = "attr_email"
fullNameClaim = "attr_lastname"
additionalParameters = {
"param1" = false
"param2" = "str"
}
}
}
}
}
}With such a configuration, the additional parameters are passed in the login URL as shown in the following example request URL.
https://example.okta.com/oauth2/.../.../code_challenge=xyz&`param1=false¶m2=str`
Client Authentication
Clients are required to authenticate against an authorization server (such as Keycloak).
The following client authentication methods are supported:
Value | Description |
---|---|
client_secret_basic | Authenticate using HTTP Basic authentication scheme |
client_secret_post | Authenticate by including the Client Credentials in the request body. This is the default authentication method supported by Digital.ai Release. |
client_secret_jwt | One of the client authentication methods defined in OpenID Connect Client Authentication. |
private_key_jwt | One of the client authentication methods defined in OpenID Connect Client Authentication. |
For more information, see Client Authentication
By default, client_secret_post
authentication method is used. You can also override default values as shown below.
xl {
security {
auth {
providers {
oidc {
clientAuthMethod = "<Expected client authentication method>"
...
}
}
}
}
}
For more information, see Using OpenID Connect to secure applications and services.
- Digital.ai Deploy and Release—22.1 and later—support
client_secret_jwt
andprivate_key_jwt
methods to authenticate clients with OIDC-based ID providers such as Keycloak. - The JWT assertion must be digitally signed using a private key in asymmetric cryptography.
- Digital.ai Deploy and Release—22.1 and later—support signed JWTs only—it does not extend to encrypted JWTs encoded in a JSON Web Encryption (JWE) structure.
ID Token Signature Verification
The ID Token is represented as a JSON Web Token (JWT) and MUST be signed using JSON Web Signature (JWS).
Clients are required to validate ID Token. The default algorithm for signature verification is RS256
. You can use idTokenJWSAlg
parameter as described in above configuration file to set different value. The following JSON Web Algorithms (JWA) are supported:
Value | Digital Signature or MAC Algorithm |
---|---|
RS256 | RSASSA-PKCS1-v1_5 using SHA-256 |
RS384 | RSASSA-PKCS1-v1_5 using SHA-384 |
RS512 | RSASSA-PKCS1-v1_5 using SHA-512 |
ES256 | ECDSA using P-256 and SHA-256 |
ES384 | ECDSA using P-384 and SHA-384 |
ES512 | ECDSA using P-521 and SHA-512 |
PS256 | RSASSA-PSS using SHA-256 and MGF1 with SHA-256 |
PS384 | RSASSA-PSS using SHA-384 and MGF1 with SHA-384 |
PS512 | RSASSA-PSS using SHA-512 and MGF1 with SHA-512 |
HS256 | HMAC using SHA-256 |
HS384 | HMAC using SHA-384 |
HS512 | HMAC using SHA-512 |
For MAC based algorithms such as HS256
, HS384
or HS512
, the clientSecret
corresponding to the clientId
is used as the symmetric key for signature verification.