Configure GitLab OAuth2 authentication
Unresolved directive in gitlab.adoc - include::{root_path}shared/auth/intro.adoc[]
This topic describes how to configure GitLab OAuth2 authentication.
Before you begin
Ensure you know how to create a GitLab OAuth application. Consult GitLab’s documentation on creating a GitLab OAuth application for more information.
Configure GitLab authentication client using the Grafana UI
NOTE: Available in Public Preview in Grafana 10.4 behind the
ssoSettingsApi
feature toggle.
As a Grafana Admin, you can configure GitLab OAuth2 client from within Grafana using the GitLab UI. To do this, navigate to Administration > Authentication > GitLab page and fill in the form. If you have a current configuration in the Grafana configuration file then the form will be pre-populated with those values otherwise the form will contain default values.
After you have filled in the form, click Save to save the configuration. If the save was successful, Grafana will apply the new configurations.
If you need to reset changes you made in the UI back to the default values, click Reset. After you have reset the changes, Grafana will apply the configuration from the Grafana configuration file (if there is any configuration) or the default values.
NOTE: If you run Grafana in high availability mode, configuration changes may not get applied to all Grafana instances immediately. You may need to wait a few minutes for the configuration to propagate to all Grafana instances.
Refer to configuration options for more information.
Configure GitLab authentication client using the Terraform provider
NOTE: Available in Public Preview in Grafana 10.4 behind the
ssoSettingsApi
feature toggle. Supported in the Terraform provider since v2.12.0.
resource "grafana_sso_settings" "gitlab_sso_settings" {
provider_name = "gitlab"
oauth2_settings {
name = "Gitlab"
client_id = "YOUR_GITLAB_APPLICATION_ID"
client_secret = "YOUR_GITLAB_APPLICATION_SECRET"
allow_sign_up = true
auto_login = false
scopes = "openid email profile"
allowed_domains = "mycompany.com mycompany.org"
role_attribute_path = "contains(groups[*], 'example-group') && 'Editor' || 'Viewer'"
role_attribute_strict = false
allowed_groups = "[\"admins\", \"software engineers\", \"developers/frontend\"]"
use_pkce = true
use_refresh_token = true
}
}
Go to Terraform Registry for a complete reference on using the grafana_sso_settings
resource.
Configure GitLab authentication client using the Grafana configuration file
Ensure that you have access to the Grafana configuration file.
Steps
To configure GitLab authentication with Grafana, follow these steps:
-
Create an OAuth application in GitLab.
-
Set the redirect URI to
http://<my_grafana_server_name_or_ip>:<grafana_server_port>/login/gitlab
.Ensure that the Redirect URI is the complete HTTP address that you use to access Grafana via your browser, but with the appended path of
/login/gitlab
.For the Redirect URI to be correct, it might be necessary to set the
root_url
option in the `[server]`section of the Grafana configuration file. For example, if you are serving Grafana behind a proxy. -
Set the OAuth2 scopes to
openid
,email
andprofile
.
-
-
Refer to the following table to update field values located in the
[auth.gitlab]
section of the Grafana configuration file:Field Description client_id
,client_secret
These values must match the client ID and client secret from your GitLab OAuth2 application.
enabled
Enables GitLab authentication. Set this value to
true
.Review the list of other GitLab configuration options and complete them, as necessary.
-
Optional: Configure a refresh token:
-
Set
use_refresh_token
totrue
in[auth.gitlab]
section in Grafana configuration file.
-
-
Optional: Configure team synchronization.
-
Restart Grafana.
You should now see a GitLab login button on the login page and be able to log in or sign up with your GitLab accounts.
Configure a refresh token
Available in Grafana v9.3 and later versions.
When a user logs in using an OAuth provider, Grafana verifies that the access token has not expired. When an access token expires, Grafana uses the provided refresh token (if any exists) to obtain a new access token.
Grafana uses a refresh token to obtain a new access token without requiring the user to log in again. If a refresh token doesn’t exist, Grafana logs the user out of the system after the access token has expired.
By default, GitLab provides a refresh token.
Refresh token fetching and access token expiration check is enabled by default for the GitLab provider since Grafana v10.1.0. If you would like to disable access token expiration check then set the use_refresh_token
configuration value to false
.
NOTE: The
accessTokenExpirationCheck
feature toggle has been removed in Grafana v10.3.0 and theuse_refresh_token
configuration value will be used instead for configuring refresh token fetching and access token expiration check.
Configure allowed groups
To limit access to authenticated users that are members of one or more GitLab groups, set allowed_groups
to a comma or space-separated list of groups.
GitLab’s groups are referenced by the group name. For example, developers
. To reference a subgroup frontend
, use developers/frontend
. Note that in GitLab, the group or subgroup name does not always match its display name, especially if the display name contains spaces or special characters. Make sure you always use the group or subgroup name as it appears in the URL of the group or subgroup.
Configure role mapping
Unless skip_org_role_sync
option is enabled, the user’s role will be set to the role retrieved from GitLab upon user login.
The user’s role is retrieved using a JMESPath expression from the role_attribute_path
configuration option. To map the server administrator role, use the allow_assign_grafana_admin
configuration option. Refer to configuration options for more information.
If no valid role is found, the user is assigned the role specified by the auto_assign_org_role
option. You can disable this default role assignment by setting role_attribute_strict = true
. This setting denies user access if no role or an invalid role is returned.
To ease configuration of a proper JMESPath expression, go to JMESPath to test and evaluate expressions with custom payloads.
Role mapping examples
This section includes examples of JMESPath expressions used for role mapping.
Map roles using user information from OAuth token
In this example, the user with email [email protected]
has been granted the Admin
role. All other users are granted the Viewer
role.
role_attribute_path = email=='[email protected]' && 'Admin' || 'Viewer'
Map roles using groups
In this example, the user from GitLab group ‘example-group’ have been granted the Editor
role. All other users are granted the Viewer
role.
role_attribute_path = contains(groups[*], 'example-group') && 'Editor' || 'Viewer'
Map server administrator role
In this example, the user with email [email protected]
has been granted the Admin
organization role as well as the Grafana server admin role. All other users are granted the Viewer
role.
role_attribute_path = email=='[email protected]' && 'GrafanaAdmin' || 'Viewer'
Example of GitLab configuration in Grafana
This section includes an example of GitLab configuration in the Grafana configuration file.
[auth.gitlab]
enabled = true
allow_sign_up = true
auto_login = false
client_id = YOUR_GITLAB_APPLICATION_ID
client_secret = YOUR_GITLAB_APPLICATION_SECRET
scopes = openid email profile
auth_url = https://gitlab.com/oauth/authorize
token_url = https://gitlab.com/oauth/token
api_url = https://gitlab.com/api/v4
role_attribute_path = contains(groups[*], 'example-group') && 'Editor' || 'Viewer'
role_attribute_strict = false
allow_assign_grafana_admin = false
allowed_groups = ["admins", "software engineers", "developers/frontend"]
allowed_domains = mycompany.com mycompany.org
tls_skip_verify_insecure = false
use_pkce = true
use_refresh_token = true
Configure team synchronization
Note: Available in Grafana Enterprise and Grafana Cloud.
By using Team Sync, you can map GitLab groups to teams within Grafana. This will automatically assign users to the appropriate teams. Teams for each user are synchronized when the user logs in.
GitLab groups are referenced by the group name. For example, developers
. To reference a subgroup frontend
, use developers/frontend
. Note that in GitLab, the group or subgroup name does not always match its display name, especially if the display name contains spaces or special characters. Make sure you always use the group or subgroup name as it appears in the URL of the group or subgroup.
To learn more about Team Sync, refer to Configure team sync.
Configuration options
The table below describes all GitLab OAuth configuration options. Like any other Grafana configuration, you can apply these options as environment variables.
Setting | Required | Description | Default |
---|---|---|---|
|
Yes |
Whether GitLab OAuth authentication is allowed. |
|
|
Yes |
Client ID provided by your GitLab OAuth app. |
|
|
Yes |
Client secret provided by your GitLab OAuth app. |
|
|
Yes |
Authorization endpoint of your GitLab OAuth provider. If you use your own instance of GitLab instead of gitlab.com, adjust |
|
|
Yes |
Endpoint used to obtain GitLab OAuth access token. If you use your own instance of GitLab instead of gitlab.com, adjust |
|
|
No |
Grafana uses |
|
|
No |
Name used to refer to the GitLab authentication in the Grafana user interface. |
|
|
No |
Icon used for GitLab authentication in the Grafana user interface. |
|
|
No |
List of comma or space-separated GitLab OAuth scopes. |
|
|
No |
Whether to allow new Grafana user creation through GitLab login. If set to |
|
|
No |
Set to |
|
|
No |
JMESPath expression to use for Grafana role lookup. Grafana will first evaluate the expression using the GitLab OAuth token. If no role is found, Grafana creates a JSON data with |
|
|
No |
Set to |
|
|
No |
Set to |
|
|
No |
Set to |
|
|
No |
List of comma or space-separated domains. User must belong to at least one domain to log in. |
|
|
No |
List of comma or space-separated groups. The user should be a member of at least one group to log in. |
|
|
No |
If set to |
|
|
No |
The path to the certificate. |
|
|
No |
The path to the key. |
|
|
No |
The path to the trusted certificate authority list. |
|
|
No |
Set to |
|
|
No |
Set to |
|