2020-02-13 03:12:25 -06:00
+++
2020-02-14 05:03:00 -06:00
title = "Azure AD OAuth2 authentication"
description = "Grafana Azure AD OAuth Guide "
2020-02-13 03:12:25 -06:00
keywords = ["grafana", "configuration", "documentation", "oauth"]
2020-10-01 16:37:26 -05:00
weight = 700
2020-02-13 03:12:25 -06:00
+++
2020-02-14 05:03:00 -06:00
# Azure AD OAuth2 authentication
2020-02-13 03:12:25 -06:00
2020-03-10 11:15:25 -05:00
> Only available in Grafana v6.7+
2021-07-14 11:55:25 -05:00
The Azure AD authentication allows you to use an Azure Active Directory tenant as an identity provider for Grafana. You can use Azure AD Application Roles to assign users and groups to Grafana roles from the Azure Portal.
2020-02-13 03:12:25 -06:00
2020-02-14 05:03:00 -06:00
## Create the Azure AD application
2020-02-13 03:12:25 -06:00
To enable the Azure AD OAuth2 you must register your application with Azure AD.
2020-07-20 14:39:23 -05:00
1. Log in to [Azure Portal ](https://portal.azure.com ) and click **Azure Active Directory** in the side menu. If you have access to more than one tenant, select your account in the upper right. Set your session to the Azure AD tenant you wish to use.
2020-02-13 03:12:25 -06:00
2020-07-20 14:39:23 -05:00
1. Under **Manage** in the side menu, click **App Registrations** and then **New Registration** . Provide a fitting name.
2020-02-13 03:12:25 -06:00
2020-11-09 14:26:49 -06:00
1. Under **Redirect URI** , select **Web** as the app type.
2020-02-13 03:12:25 -06:00
2020-07-20 14:39:23 -05:00
1. Add the redirect URL `https://<grafana domain>/login/azuread` , then click **Register** .
2020-02-13 03:12:25 -06:00
2021-07-14 11:55:25 -05:00
1. The app's **Overview** page is displayed. Note the **Application ID** . This is the OAuth client ID.
2020-02-13 03:12:25 -06:00
2020-07-20 14:39:23 -05:00
1. Click **Endpoints** from the top menu.
2021-07-14 11:55:25 -05:00
- Note the **OAuth 2.0 authorization endpoint (v2)** . This is the auth URL.
- Note the **OAuth 2.0 token endpoint (v2)** . This is the token URL.
2020-02-13 03:12:25 -06:00
2021-07-14 11:55:25 -05:00
1. Click **Certificates & secrets** and then add a new entry under **Client secrets** .
2020-02-13 03:12:25 -06:00
2021-07-14 11:55:25 -05:00
- Description: Grafana OAuth
- Expires: Never
1. Click **Add** , and then copy the key value. This is the OAuth client secret.
2020-02-13 03:12:25 -06:00
1. Click **Manifest** .
2021-07-14 11:55:25 -05:00
- Define the required Application Role values for Grafana: Viewer, Editor, Admin. Otherwise, all users will have the Viewer role.
- Every role requires a unique ID.
- Generate the unique ID on Linux with `uuidgen` , and on Windows through Microsoft
PowerShell with `New-Guid` .
- Include the unique ID in the configuration file:
2020-02-13 03:12:25 -06:00
```json
"appRoles": [
{
"allowedMemberTypes": [
"User"
],
"description": "Grafana admin Users",
"displayName": "Grafana Admin",
"id": "SOME_UNIQUE_ID",
"isEnabled": true,
"lang": null,
"origin": "Application",
"value": "Admin"
},
{
"allowedMemberTypes": [
"User"
],
"description": "Grafana read only Users",
"displayName": "Grafana Viewer",
"id": "SOME_UNIQUE_ID",
"isEnabled": true,
"lang": null,
"origin": "Application",
"value": "Viewer"
},
{
"allowedMemberTypes": [
"User"
],
"description": "Grafana Editor Users",
"displayName": "Grafana Editor",
"id": "SOME_UNIQUE_ID",
"isEnabled": true,
"lang": null,
"origin": "Application",
"value": "Editor"
}
],
```
2020-07-08 18:30:15 -05:00
1. Go to **Azure Active Directory** and then to **Enterprise Applications** . Search for your application and click on it.
2020-02-13 03:12:25 -06:00
2020-11-09 14:26:49 -06:00
1. Click on **Users and Groups** and add Users/Groups to the Grafana roles by using **Add User** .
2020-02-13 03:12:25 -06:00
2020-05-13 04:23:01 -05:00
## Enable Azure AD OAuth in Grafana
2020-02-14 05:03:00 -06:00
2020-06-23 11:56:44 -05:00
1. Add the following to the [Grafana configuration file ]({{< relref "../administration/configuration.md#config-file-locations" >}} ):
2020-02-13 03:12:25 -06:00
```ini
[auth.azuread]
name = Azure AD
enabled = true
allow_sign_up = true
client_id = APPLICATION_ID
client_secret = CLIENT_SECRET
scopes = openid email profile
auth_url = https://login.microsoftonline.com/TENANT_ID/oauth2/v2.0/authorize
token_url = https://login.microsoftonline.com/TENANT_ID/oauth2/v2.0/token
2020-02-14 05:03:00 -06:00
allowed_domains =
allowed_groups =
2020-02-13 03:12:25 -06:00
```
2021-07-14 11:55:25 -05:00
**Note:** Ensure that the [root_url ]({{< relref "../administration/configuration/#root-url" >}} ) in Grafana is set in your Azure Application Reply URLs (**App** -> **Settings** -> **Reply URLs** )
### Configure allowed groups
2020-02-14 05:03:00 -06:00
2021-07-14 11:55:25 -05:00
To limit access to authenticated users who are members of one or more groups, set `allowed_groups`
to a comma- or space-separated list of group object IDs. You can find object IDs for a specific group on the Azure portal:
2020-02-14 05:03:00 -06:00
2021-07-14 11:55:25 -05:00
1. Go to **Azure Active Directory -> Groups** .
For example, if you want to only give access to members of the group `example` with an ID of `8bab1c86-8fba-33e5-2089-1d1c80ec267d` , set the following:
2020-02-14 05:03:00 -06:00
```ini
allowed_groups = 8bab1c86-8fba-33e5-2089-1d1c80ec267d
```
2021-07-14 11:55:25 -05:00
You'll need to ensure that you've [enabled group attributes ](https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-fed-group-claims#configure-the-azure-ad-application-registration-for-group-attributes ) in your Azure AD Application Registration manifest file. Navigate to **Azure Portal** -> **Azure Active Directory** -> **Application Registrations** -> **Select Application** -> **Manifest** , and set the following:
2020-04-06 12:23:49 -05:00
```json
2020-12-01 12:27:19 -06:00
"groupMembershipClaims": "ApplicationGroup, SecurityGroup"
2020-04-06 12:23:49 -05:00
```
2021-07-14 11:55:25 -05:00
### Configure allowed domains
The `allowed_domains` option limits access to users who belong to specific domains. Separate domains with space or comma.
2020-02-14 05:03:00 -06:00
```ini
allowed_domains = mycompany.com mycompany.org
```
### Team Sync (Enterprise only)
> Only available in Grafana Enterprise v6.7+
With Team Sync you can map your Azure AD groups to teams in Grafana so that your users will automatically be added to
2020-03-10 11:15:25 -05:00
the correct teams.
2020-02-14 05:03:00 -06:00
2021-07-14 11:55:25 -05:00
You can reference Azure AD groups by group object ID, like `8bab1c86-8fba-33e5-2089-1d1c80ec267d` .
2020-02-14 05:03:00 -06:00
[Learn more about Team Sync ]({{< relref "team-sync.md" >}} )