Important: This plug-in is maintained by the Jenkins community and won’t be supported by Microsoft as of February 29, 2024.
A Jenkins Plugin that supports authentication & authorization via Microsoft Entra ID (previously known as Azure Active Directory).
-
Open
Microsoft Entra ID, clickApp registrations -
Click
New registration -
Add a new Reply URL
https://{your_jenkins_host}/securityRealm/finishLogin. Make sure "Jenkins URL" (Manage Jenkins => Configure System) is set to the same value ashttps://{your_jenkins_host}. -
Click
Certificates & secrets-
To use a client secret: Under Client secrets, click
New client secretto generate a new key. Copy thevalue, it will be used asClient Secretin Jenkins. -
To use a certificate: Under Certificates, click
Upload certificateto upload your certificate. This certificate will be used for client certificate authentication in Jenkins. You will need to use the corresponding private key associated with this certificate in PEM format.
-
-
Click
Authentication, under 'Implicit grant and hybrid flows', enableID tokens. -
(optional) To enable Microsoft Entra ID group support: Click
Manifestand modify the"groupMembershipClaims": nullvalue to"groupMembershipClaims": "SecurityGroup", then 'Save' it.
In order for Jenkins to be able to lookup data from Microsoft Entra ID it needs some Graph API permissions.
This is used for:
- Autocompleting users and groups on the 'Security' page
- Jenkins looking up the user, e.g. when you use the Rest API
- Group display name support (rather than just object ID)
Note: You can skip this part and just use the claims returned when authenticating.
| Permission | Type | Purpose |
|---|---|---|
openid |
Delegated | OIDC sign-in |
profile |
Delegated | Basic profile in ID token |
email |
Delegated | Email address in ID token |
User.ReadBasic.All |
Application | Look up user profiles |
GroupMember.Read.All |
Application | Look up transitive group memberships |
Group.Read.All |
Application | Search and resolve groups by name or ID |
ProfilePhoto.Read.All |
Application | Fetch user avatar photos (optional) |
Important:
offline_accessandUser.Read(delegated) must not be present in the API permissions list. If they exist (often added automatically during app registration), remove them. Theoffline_accessscope in particular causes a recurring admin consent prompt on every login because the plugin only usesid_tokenand never needs a refresh token.
-
Click
API permissions -
Add a permission → Microsoft Graph → Application permissions
-
Add the following Application permissions:
User.ReadBasic.All— read basic user profilesGroupMember.Read.All— read group membershipsGroup.Read.All— read group details and search groupsProfilePhoto.Read.All— read user profile photos (optional, for avatars)
-
Add a permission → Microsoft Graph → Delegated permissions
-
Add the following Delegated permissions:
openidprofileemail
-
Remove
offline_accessandUser.Read(delegated) if they are listed. -
Click
Grant admin consent for <your tenant>. If you are not an admin in your tenant, please contact an admin to grant the permissions.
Replace <APP_CLIENT_ID> and <TENANT_ID> with your values, then run the script below.
APP_ID="<APP_CLIENT_ID>"
TENANT_ID="<TENANT_ID>"
GRAPH_API_ID="00000003-0000-0000-c000-000000000000"
# Resolve permission IDs from the live Microsoft Graph service principal
GRAPH_SP=$(az ad sp show --id "$GRAPH_API_ID")
# --- Delegated (Scope) ---
OPENID_ID=$(echo "$GRAPH_SP" | jq -r '.oauth2PermissionScopes[] | select(.value=="openid") | .id')
PROFILE_ID=$(echo "$GRAPH_SP" | jq -r '.oauth2PermissionScopes[] | select(.value=="profile") | .id')
EMAIL_ID=$(echo "$GRAPH_SP" | jq -r '.oauth2PermissionScopes[] | select(.value=="email") | .id')
OFFLINE_ACCESS_ID=$(echo "$GRAPH_SP"| jq -r '.oauth2PermissionScopes[] | select(.value=="offline_access") | .id')
USER_READ_SCOPE_ID=$(echo "$GRAPH_SP"| jq -r '.oauth2PermissionScopes[] | select(.value=="User.Read") | .id')
# --- Application (Role) ---
USER_READ_BASIC_ALL_ID=$(echo "$GRAPH_SP" | jq -r '.appRoles[] | select(.value=="User.ReadBasic.All") | .id')
GROUP_MEMBER_READ_ALL_ID=$(echo "$GRAPH_SP" | jq -r '.appRoles[] | select(.value=="GroupMember.Read.All") | .id')
GROUP_READ_ALL_ID=$(echo "$GRAPH_SP" | jq -r '.appRoles[] | select(.value=="Group.Read.All") | .id')
PROFILE_PHOTO_READ_ALL_ID=$(echo "$GRAPH_SP"| jq -r '.appRoles[] | select(.value=="ProfilePhoto.Read.All")| .id')
# Remove unwanted permissions that cause the recurring admin-consent prompt
az ad app permission delete --id "$APP_ID" --api "$GRAPH_API_ID" \
--api-permissions "$OFFLINE_ACCESS_ID" 2>/dev/null || true
az ad app permission delete --id "$APP_ID" --api "$GRAPH_API_ID" \
--api-permissions "$USER_READ_SCOPE_ID" 2>/dev/null || true
# Add required Application permissions
az ad app permission add --id "$APP_ID" --api "$GRAPH_API_ID" \
--api-permissions \
"${USER_READ_BASIC_ALL_ID}=Role" \
"${GROUP_MEMBER_READ_ALL_ID}=Role" \
"${GROUP_READ_ALL_ID}=Role" \
"${PROFILE_PHOTO_READ_ALL_ID}=Role"
# Add required Delegated permissions (OIDC sign-in scopes)
az ad app permission add --id "$APP_ID" --api "$GRAPH_API_ID" \
--api-permissions \
"${OPENID_ID}=Scope" \
"${PROFILE_ID}=Scope" \
"${EMAIL_ID}=Scope"
# Grant tenant-wide admin consent for all permissions
az ad app permission admin-consent --id "$APP_ID"
If admin consent fails, contact your IT Administrator
Click the settings icon in the header, then click Security
-
For the Security Realm select
Entra IDand fill in the credential. -
Click
Verify Applicationto make sure your input is valid. -
Save the configuration, (logged-in users will have permission to do anything)
-
Log in with Microsoft Entra ID
-
Return to 'Security' to configure authorization
Note: if you haven't setup Graph API permissions, verify application will fail, skip over this step
Jenkins will match permissions based on the Object ID of a user or group.
This plugin extends the traditional Matrix Authorization Strategy with the ability to search by users / groups by display name when configuring the authorization rules.
To use this feature:
- Click
Entra ID Matrix-based security - Search for user in 'Azure User/group to add' and click Add
- Select the permission(s) in the table
- Click 'Apply'
You can still use other authorization strategies such as:
The following can normally be used:
- Object ID of user or group
- Display name of group (Only if Graph API permissions granted)
preferred_usernameclaim which is normally the 'User principal name', but not always.
It is recommended that you use the Object ID, after adding the object ID you will be able to see the user or group's display name.
The plugin has full support for use in Configuration as Code and Job DSL.
For an example combining the two, see the configuration-as-code.yml test resource.
You can use Workload Identity to authenticate with Entra ID without storing a client secret or certificate. Instead, Jenkins uses a JWT token issued by an OIDC identity provider (e.g. a Kubernetes cluster, GitHub Actions, or a custom OIDC provider) that is exchanged for an Entra ID access token via federated credentials.
-
OIDC Identity Provider — any provider that issues JWT tokens with a publicly accessible discovery document (
.well-known/openid-configuration) and JWKS endpoint. Examples include:- Kubernetes clusters with OIDC Issuer enabled
- GitHub Actions
- A custom OIDC provider (e.g. keys and metadata hosted on a storage account)
-
Entra ID App Registration — the same one used for user login. On the App Registration:
- Go to Certificates & secrets → Federated credentials → Add credential
- Configure the Issuer, Subject, and Audience to match the tokens issued by your OIDC provider
- Save the credential
-
Federated Token File — a file containing a valid JWT issued by your OIDC provider. Set the
AZURE_FEDERATED_TOKEN_FILEenvironment variable to the path of this file.
- Go to Manage Jenkins → Security
- Under Security Realm, select Entra ID
- Enter the Client ID and Tenant
- Under Authentication Type, select Workload Identity (Federated Credentials)
- Click Save
jenkins:
securityRealm:
azure:
clientid: "<YOUR_APP_CLIENT_ID>"
credentialtype: "WorkloadIdentity"
tenant: "<YOUR_TENANT_ID>"
cacheduration: 3600
fromrequest: true
- If you see
AZURE_FEDERATED_TOKEN_FILE environment variable is not set, ensure the environment variable points to a valid JWT token file. - Verify the Federated Identity Credential on the App Registration has the correct Issuer, Subject, and Audience values matching your OIDC provider's tokens. Decode the token (
cat $AZURE_FEDERATED_TOKEN_FILE | cut -d. -f2 | tr '_-' '/+' | base64 -d 2>/dev/null) to inspect theiss,sub, andaudclaims, or use a tool like jwt-cli (jwt decode $(cat $AZURE_FEDERATED_TOKEN_FILE)). - A
400error from the token endpoint typically means a mismatch between the token claims and the federated credential configuration.
A: You can disable the security from the config file (see https://www.jenkins.io/doc/book/security/access-control/disable/)
Q: Why am I getting an error "insufficient privileges to complete the operation" even after having granted the permission?
A: It can take a long time for the privileges to take effect, which could be 10-20 minutes. Just wait for a while and try again.
Q: Why do I keep seeing an admin consent prompt ("View users' basic profile" / "Maintain access to data you have given it access to") on every login, even after approving it?
A: This is caused by two issues that often appear together:
-
offline_accessis registered on the app — it is added automatically by Azure when you create an app registration. Since this plugin only uses anid_tokenand never needs a refresh token, this permission is unnecessary. Its presence triggers a recurring consent prompt. -
Admin consent was not granted at the tenant level — clicking "Accept" on the per-user interactive consent screen only consents for that single user. Every other user (and the same user in a new session on some tenants) is prompted again.
Fix:
- Remove
offline_access(andUser.Readdelegated if present) from the app's API permissions. - Click "Grant admin consent for <your tenant>" in the Azure Portal (API permissions page), or run
az ad app permission admin-consent --id <APP_CLIENT_ID>.
Refer to Option B — Azure CLI above for a complete setup script.