Configure OpenID Connect (OIDC) Authentication For Deploy
This topic describes how to configure Deploy authentication using the OpenID Connect (OIDC) protocol.
OpenID Connect (OIDC) is an identity layer built on top of the OAuth 2.0 protocol and is 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 the ID token.
You can log into Deploy using various Identity providers that support the OIDC authentication protocol, such as OKTA, Keycloak, and Azure Active Directory (Office 365).
Note: In the above identities, any one single authentication option will be supported.
You can easily add a layer of security for Deploy 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 smartphones after correctly entering their passwords.
Requirements
The Deploy OIDC authentication plugin must be installed.
Do you want to login as an internal user?
- The The Deploy 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 do so directly via the Deploy's login page,
xl-deploy.example.com/login
, for example.
Configure Digital.ai Deploy for OIDC Authentication
Do this on the Digital.ai Deploy server.
-
Enable the OIDC Authentication plugin, modify the
Default
configuration property toOIDC
in theXL_DEPLOY_SERVER_HOME/centralConfiguration/deploy-server.yaml
file. -
To configure the OIDC Authentication plugin, add the following YAML code snippet to the
XL_DEPLOY_SERVER_HOME/centralConfiguration/deploy-oidc.yaml
file.deploy.security:
auth:
providers:
oidc:
loginMethodDescription:
clientId: "<Your client ID>"
clientSecret: "<Your client secret>"
issuer: "<Enter the Open ID Provider Issuer>"
redirectUri: "https://xl-deploy.example.com/login/external-login"
postLogoutRedirectUri: "https://xl-deploy.example.com/login/external-login"
rolesClaimName: "<Your roles claim>"
userNameClaimName: "<Your username claim>"
The above configuration automatically fetches the required configuration from the discovery endpoint. See the Discovery endpoint for more information.
It is possible to override the values for the keyRetrievalUri
, accessTokenUri
, userAuthorizationUri
, and logoutUri
keys by adding the values explicitly. This is useful if discovery endpoint is not reachable.
deploy.security:
auth:
providers:
oidc:
clientId: "<Your client ID>"
clientSecret: "<Your client secret>"
clientAuthMethod: "<Your client authentication method here>"
issuer: "<Enter the Open ID Provider Issuer>"
keyRetrievalUri: "https://oidc.example.com/endpoint/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-deploy.example.com/login/external-login"
postLogoutRedirectUri: "https://xl-deploy.example.com/login/external-login"
idTokenJWSAlg: "<The ID token signature verification algorithm>"
rolesClaimName: "<Your roles claim>"
userNameClaimName: "<Your username claim>"
Note: OpenID Connect provider and Deploy instances should be time-synchronized. For example, on NTP.
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. For more information, see OpenID Connect Discovery Specification.
The issuer
, accessTokenUri
, userAuthorizationUri
, jwks_uri
, and logoutUri
options are also presented in the JSON metadata that the Identity Provider server publishes at the discovery endpoint. The path obtained in the jwks_uri
is used as a value for keyRetrievalUri
in the XL_DEPLOY_SERVER_HOME/centralConfiguration/deploy-oidc.yaml
file.
Note: The
redirectUri
endpoint must always point to the/login/external-login
Deploy endpoint. TheredirectUri
is an endpoint where authentication responses can be sent and received by Deploy. It must exactly match one of theredirect_uris
you registered in the 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
.
Select Claims for a Specific User
In OIDC the term claim is used to define settings used to obtain information about a specific user, such as the username and roles. When a user logs in, the Deploy server receives a token with a number of claims, which comprises of several key-value pairs. From these claims, you must select two keys that represent the username and the user roles.
You can provide the required claims from the following configuration properties:
-
rolesClaimName
- In Deploy, the OIDC roles become principals that you can assign to roles inside Deploy.Each time you login, therolesClaim
is matched to the principal assigned to the role in Deploy. This grants access according to the permissions of the role in Deploy.Nested Claims for Deploy Roles Mapping:
- Digital.ai Deploy supports nested claims for Deploy 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 Deploy supports nested claims for Deploy roles mapping. The
-
userNameClaimName
- Unique username for both internal and external users. You cannot sign in with a user if a local account with the same username exists.
Send Additional Parameters to the OIDC Provider
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.
deploy.security:
auth:
providers:
oidc:
clientId: "<Your client ID>"
clientSecret: "<Your client secret>"
clientAuthMethod: "<Your client authentication method here>"
issuer: "<Enter the Open ID Provider Issuer>"
keyRetrievalUri: "https://oidc.example.com/endpoint/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-deploy.example.com/login/external-login"
postLogoutRedirectUri: "https://xl-deploy.example.com/login/external-login"
idTokenJWSAlg: "<The ID token signature verification algorithm>"
rolesClaimName: "<Your roles claim>"
userNameClaimName: "<Your username claim>"
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.oktapreview.com/oauth2/.../.../code_challenge=xyz&`param1=false¶m2=str`
OpenID Connect Logout
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 the postLogoutRedirectUri
parameter.
Client Authentication
Clients are required to authenticate against Authorization server when using the Token Endpoint. Below client authentication methods are currently 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.
deploy.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 the idTokenJWSAlg
parameter as described in above configuration file to set a different value. Below JSON Web Algorithms (JWA) are currently 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 |
Note: 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.
Client Authentication Using client_secret_jwt
Digital.ai Deploy supports client authentication using the client_secret_jwt method.
The following JSON Web Algorithms (JWA) are supported:
- HS256 (HMAC using SHA-256)—this is the default if you use the client_secret_jwt authentication method
- HS384 (HMAC using SHA-384)
- HS512 (HMAC using SHA-512)
You can configure the desired JWS algorithm using the deploy.security.auth.providers.oidc.clientAuthJwt.jwsAlg
key.
Here's an example deploy-oidc.yaml
file that uses the client_secret_jwt authentication method.
deploy:
security:
auth:
providers:
oidc:
clientAuthJwt:
jwsAlg: HS256
clientAuthMethod: client_secret_jwt
...
Client Authentication Using private_key_jwt
Digital.ai Deploy supports client authentication using the private_key_jwt method.
The following JSON Web Algorithms (JWA) are supported:
- RS256 (RSASSA-PKCS1-v1_5 using SHA-256)—this is the default if you use the private_key_jwt authentication method
- 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)
Here's an example deploy-oidc.yaml
file that uses the private_key_jwt authentication method.
deploy:
security:
auth:
providers:
oidc:
clientAuthMethod: private_key_jwt
clientAuthJwt:
jwsAlg: RS256 # Expected JSON Web Algorithm
key-password: mykeyAliasPassword # Private key password
key-store-password: password # The key store password
keyAlias: mykeyAlias # Private key alias inside the key store
tokenKeyId: mykey # This is a token key identifier 'kid' header - set it if your OpenID Connect provider requires it
...
Bearer Token Authentication for REST APIs
It is possible to use the OAuth 2.0 token to access the public REST APIs. By default, the RS256
algorithm is used to validate the token. You can also override all default values as shown below.
deploy:
security:
auth:
providers:
oidc:
...
access-token: "<Expected issuer 'iss' claim value>"
issuer: "<Expected audience 'aud' claim value>"
audience: "<The jwks_uri to retrieve keys for the token>"
keyRetrievalUri: "<The jwks_uri to retrieve keys for the token>"
jwsAlg: "<The token signature verification algorithm>"
secretKey: "<The secret key if MAC based algorithms is used for the token>"
...
The default values for access token configuration properties are described below:
Configuration property | Default |
---|---|
xl.security.auth.providers.oidc.access-token.issuer | OIDC issuer xl.security.auth.providers.oidc.issuer |
xl.security.auth.providers.oidc.access-token.audience | OIDC clientId xl.security.auth.providers.oidc.clientId |
xl.security.auth.providers.oidc.access-token.keyRetrievalUri | OIDC jwks_uri xl.security.auth.providers.oidc.keyRetrievalUri |
xl.security.auth.providers.oidc.access-token.jwsAlg | RS256 |
Note: The token must contain userNameClaim
and rolesClaim
to map proper roles in Deploy.
Integration with Keycloak Identity Provider
Installing Keycloak
- Download the latest version of Keycloak.
- Unpack the file, open a terminal window and go to the directory where you extracted the file.
- Go to the
bin
directory and runstandalone.sh
. - By default, Keycloak runs on port
8080
. Using your browser, navigate to that location, and create an admin user. For example: admin/admin. - When the admin user is created, go to the Administration Console.
Setting Up Keycloak for Deploy
For more information, see Configure OpenID Connect (OIDC) Authentication with Keycloak.
- On the top left, go to Master, open the drop-down menu, and click Add realm.
- Set the name to XLDeploy, and save it.
- Set the Display name to Deploy.
- On the sidebar, select Clients
- Click create, set the client ID to Deploy Server.
- Click Save.
- Set Access Type to Confidential, and add the URL to your Deploy server, for example:
http://localhost:4516/
, as Valid Redirect URI. - Click Save. A new Credentials tab appears.
Note: To add roles to Keycloak, select Roles on the sidebar. These will be mapped to the Deploy principals later. For example, if you create a user
JohnDoe
and you assign the roleadmins
to the user, and in Deploy you assignadmin permission
toadmins
, then theJohnDoe
user can log in as anadmin
in Deploy. - On the sidebar, under Users, click Add user.
- Set the username to
JohnDoe
and click Save. - Select the Credentials tab and specify a password.
Note: If you have created roles, go to the Role Mappings tab, and add the desired roles.
- Click Clients in the sidebar, go to the Mappers tab, and click Create.
- Specify a name, for example: group memberships.
- Set Mapper Type to Group Membership,
- Set Token Claim Name to
groups
, - Set Add to ID Token to ON.
Integration with OKTA Identity Provider
You can register an OAuth client by creating a new application integration from the OKTA Admin interface:
- Log in to your OKTA organization as an administrator.
- Click Admin.
- From Shortcuts on the right side of the screen, click Add Applications.
- On the left of the screen, click Create New App.
- Select OpenID Connect as the Sign on method.
- Configure one or more Redirect URIs for your Deploy application.
- Click Finish.
- Using the People or Groups tabs, assign people to your newly created Deploy application.
Note: Users cannot authenticate to your Deploy application if they are not assigned.
- Find your Client ID in the Client Credentials section of the Groups tab. Use the Client ID that you obtained to configure the Deploy server as it was described above.
for more information on how to configure OKTA, see the OKTA documentation.
Integration with Azure Active Directory (Office 365)
Register your application as described here and use https://login.microsoftonline.com/{your tenant id}/.well-known/openid-configuration
to collect configurations.
Using OIDC with DevOps as Code
The DevOps as Code CLI is not compatible with OIDC's authentication method. As a workaround, if your Deploy instance is configured to use OIDC, you can create a devops-as-code
internal system user to work with the CLI.
Debugging
To enable extra debugging in case of any failures, modify the logback.xml
file and add the logger as shown below:
<logger name="org.springframework.security" level="trace" />