This is documentation for the next version of Grafana. For the latest stable release, go to the latest version.
Manage RBAC roles
Note
Available in Grafana Enterprise and Grafana Cloud.
This section includes instructions for how to view permissions associated with roles, create custom roles, and update and delete roles.
The following example includes the base64 username:password Basic Authorization. You cannot use authorization tokens in the request.
List permissions associated with roles
Use a GET
command to see the actions and scopes associated with a role. For more information about seeing a list of permissions for each role, refer to Get a role.
To see the permissions associated with basic roles, refer to the following basic role UIDs:
Basic role | UID |
---|---|
None | basic_none |
Viewer | basic_viewer |
Editor | basic_editor |
Admin | basic_admin |
Grafana Admin | basic_grafana_admin |
Example request
curl --location --request GET '<grafana_url>/api/access-control/roles/qQui_LCMk' --header 'Authorization: Basic YWRtaW46cGFzc3dvcmQ='
Example response
{
"version": 2,
"uid": "qQui_LCMk",
"name": "fixed:users:writer",
"displayName": "User writer",
"description": "Read and update all attributes and settings for all users in Grafana: update user information, read user information, create or enable or disable a user, make a user a Grafana administrator, sign out a user, update a user’s authentication token, or update quotas for all users.",
"global": true,
"permissions": [
{
"action": "org.users:add",
"scope": "users:*",
"updated": "2021-05-17T20:49:18+02:00",
"created": "2021-05-17T20:49:18+02:00"
},
{
"action": "org.users:read",
"scope": "users:*",
"updated": "2021-05-17T20:49:18+02:00",
"created": "2021-05-17T20:49:18+02:00"
},
{
"action": "org.users:remove",
"scope": "users:*",
"updated": "2021-05-17T20:49:18+02:00",
"created": "2021-05-17T20:49:18+02:00"
},
{
"action": "org.users:write",
"scope": "users:*",
"updated": "2021-05-17T20:49:18+02:00",
"created": "2021-05-17T20:49:18+02:00"
}
],
"updated": "2021-05-17T20:49:18+02:00",
"created": "2021-05-13T16:24:26+02:00"
}
Refer to the RBAC HTTP API for more details.
Create custom roles
This section shows you how to create a custom RBAC role using Grafana provisioning and the HTTP API.
Create a custom role when basic roles and fixed roles do not meet your permissions requirements.
Before you begin:
- Plan your RBAC rollout strategy.
- Determine which permissions you want to add to the custom role. To see a list of actions and scope, refer to RBAC permissions, actions, and scopes.
- Enable role provisioning.
- Ensure that you have permissions to create a custom role.
- By default, the Grafana Admin role has permission to create custom roles.
- A Grafana Admin can delegate the custom role privilege to another user by creating a custom role with the relevant permissions and adding the
permissions:type:delegate
scope.
Create custom roles using provisioning
File-based provisioning is one method you can use to create custom roles.
Open the YAML configuration file and locate the
roles
section.Refer to the following table to add attributes and values.
Attribute | Description |
---|---|
name | A human-friendly identifier for the role that helps administrators understand the purpose of a role. name is required and cannot be longer than 190 characters. We recommend that you use ASCII characters. Role names must be unique within an organization. |
uid | A unique identifier associated with the role. The UID enables you to change or delete the role. You can either generate a UID yourself, or let Grafana generate one for you. You cannot use the same UID within the same Grafana instance. |
orgId | Identifies the organization to which the role belongs. The default org ID is used if you do not specify orgId . |
global | Global roles are not associated with any specific organization, which means that you can reuse them across all organizations. This setting overrides orgId . |
displayName | Human-friendly text that is displayed in the UI. Role display name cannot be longer than 190 ASCII-based characters. For fixed roles, the display name is shown as specified. If you do not set a display name the display name replaces ':' (a colon) with ' ' (a space). |
description | Human-friendly text that describes the permissions a role provides. |
group | Organizes roles in the role picker. |
version | A positive integer that defines the current version of the role, which prevents overwriting newer changes. |
hidden | Hidden roles do not appear in the role picker. |
state | State of the role. Defaults to present , but if set to absent the role will be removed. |
force | Can be used in addition to state absent , to force the removal of a role and all its assignments. |
from | An optional list of roles from which you want to copy permissions. |
permissions | Provides users access to Grafana resources. For a list of permissions, refer to RBAC permissions actions and scopes. If you do not know which permissions to assign, you can create and assign roles without any permissions as a placeholder. Using the from attribute, you can specify additional permissions or permissions to remove by adding a state to your permission list. |
Reload the provisioning configuration file.
For more information about reloading the provisioning configuration at runtime, refer to Reload provisioning configurations.
The following example creates a local role:
# config file version
apiVersion: 2
roles:
- name: custom:users:writer
description: 'List, create, or update other users.'
version: 1
orgId: 1
permissions:
- action: 'users:read'
scope: 'global.users:*'
- action: 'users:write'
scope: 'global.users:*'
- action: 'users:create'
The following example creates a hidden global role. The global: true
option creates a global role, and the hidden: true
option hides the role from the role picker.
# config file version
apiVersion: 2
roles:
- name: custom:users:writer
description: 'List, create, or update other users.'
version: 1
global: true
hidden: true
permissions:
- action: 'users:read'
scope: 'global.users:*'
- action: 'users:write'
scope: 'global.users:*'
- action: 'users:create'
The following example creates a global role based on other fixed roles. The from
option contains the roles from which we want to
copy permissions. The permission state: absent
option can be used to specify permissions to exclude from the copy.
# config file version
apiVersion: 2
roles:
- name: custom:org.users:writer
description: 'List and remove other users from the organization.'
version: 1
global: true
from:
- name: 'fixed:org.users:reader'
global: true
- name: 'fixed:org.users:writer'
global: true
permissions:
- action: 'org.users:write'
scope: 'users:*'
state: 'absent'
- action: 'org.users:add'
scope: 'users:*'
state: 'absent'
Create custom roles using the HTTP API
The following examples show you how to create a custom role using the Grafana HTTP API. For more information about the HTTP API, refer to Create a new custom role.
Note
You cannot create a custom role with permissions that you do not have. For example, if you only haveusers:create
permissions, then you cannot create a role that includes other permissions.
The following example creates a custom:users:admin
role and assigns the users:create
action to it.
Example request
curl --location --request POST '<grafana_url>/api/access-control/roles/' \
--header 'Authorization: Basic YWRtaW46cGFzc3dvcmQ=' \
--header 'Content-Type: application/json' \
--data-raw '{
"version": 1,
"uid": "jZrmlLCkGksdka",
"name": "custom:users:admin",
"displayName": "custom users admin",
"description": "My custom role which gives users permissions to create users",
"global": true,
"permissions": [
{
"action": "users:create"
}
]
}'
Example response
{
"version": 1,
"uid": "jZrmlLCkGksdka",
"name": "custom:users:admin",
"displayName": "custom users admin",
"description": "My custom role which gives users permissions to create users",
"global": true,
"permissions": [
{
"action": "users:create"
"updated": "2021-05-17T22:07:31.569936+02:00",
"created": "2021-05-17T22:07:31.569935+02:00"
}
],
"updated": "2021-05-17T22:07:31.564403+02:00",
"created": "2021-05-17T22:07:31.564403+02:00"
}
Refer to the RBAC HTTP API for more details.
Update basic role permissions
If the default basic role definitions do not meet your requirements, you can change their permissions.
Before you begin:
- Determine the permissions you want to add or remove from a basic role. For more information about the permissions associated with basic roles, refer to RBAC role definitions.
Note
You cannot modify theNo Basic Role
permissions.
To change permissions from a basic role:
Open the YAML configuration file and locate the
roles
section.Refer to the following table to add attributes and values.
Attribute Description name
The name of the basic role you want to update. You can specify a uid
instead of a role name. The rolename
or theuid
are required.orgId
Identifies the organization to which the role belongs. global
can be used instead to specify it’s a global role.version
Identifies the version of the role, which prevents overwriting newer changes. overrideRole
If set to true, role will be updated regardless of its version in the database. There is no need to specify version
ifoverrideRole
is set totrue
.from
List of roles from which to copy permissions. permissions > state
The state of the permission. You can set it to absent
to ensure it exclusion from the copy list.Reload the provisioning configuration file.
For more information about reloading the provisioning configuration at runtime, refer to Reload provisioning configurations.
The following example modifies the Grafana Admin
basic role permissions.
- Permissions to list, grant, and revoke roles to teams are removed.
- Permission to read and write Grafana folders is added.
# config file version
apiVersion: 2
roles:
- name: 'basic:grafana_admin'
global: true
version: 3
from:
- name: 'basic:grafana_admin'
global: true
permissions:
# Permissions to remove
- action: 'teams.roles:read'
scope: 'teams:*'
state: 'absent'
- action: 'teams.roles:remove'
scope: 'permissions:type:delegate'
state: 'absent'
- action: 'teams.roles:add'
scope: 'permissions:type:delegate'
state: 'absent'
# Permissions to add
- action: 'folders:read'
scope: 'folder:*'
- action: 'folders:write'
scope: 'folder:*'
Note
You can add multiplefixed
,basic
orcustom
roles to thefrom
section. Their permissions will be copied and added to the basic role. Make sure to increment the role version for the changes to be accounted for.
You can also change basic roles’ permissions using the API. Refer to the RBAC HTTP API for more details.
Reset basic roles to their default
This section describes how to reset the basic roles to their default.
You have two options to reset the basic roles permissions to their default.
Use the configuration option
Note: Available as of Grafana Enterprise 9.4.
Warning: If this option is left to true, permissions will be reset on every boot.
Use the reset_basic_roles option to reset basic roles permissions to their default on Grafana instance boot up.
- Open you configuration file and update the rbac section as follow:
[rbac]
reset_basic_roles = true
Use the http endpoint
An alternative to the configuration option is to use the HTTP endpoint.
Open the YAML configuration file and locate the
roles
section.Grant the
action: "roles:write", scope: "permissions:type:escalate
permission toGrafana Admin
. Note that this permission has not been granted to any basic roles by default, because users could acquire more permissions than they previously had through the basic role permissions reset.apiVersion: 2 roles: - name: 'basic:grafana_admin' global: true version: 3 from: - name: 'basic:grafana_admin' global: true permissions: # Permission allowing to reset basic roles - action: 'roles:write' scope: 'permissions:type:escalate'
As a
Grafana Admin
, call the API endpoint to reset the basic roles to their default. Refer to the RBAC HTTP API for more details.
Delete a custom role using Grafana provisioning
Delete a custom role when you no longer need it. When you delete a custom role, the custom role is removed from users and teams to which it is assigned.
Before you begin:
- Identify the role or roles that you want to delete.
- Ensure that you have access to the YAML configuration file.
To delete a custom role:
Open the YAML configuration file and locate the
roles
section.Refer to the following table to add attributes and values.
Attribute Description name
The name of the custom role you want to delete. You can specify a uid
instead of a role name. The rolename
or theuid
are required.orgId
Identifies the organization to which the role belongs. state
The state of the role set to absent
to trigger its removal.force
When set to true
, the roles are removed even if there are existing assignments.Reload the provisioning configuration file.
For more information about reloading the provisioning configuration at runtime, refer to Reload provisioning configurations.
The following example deletes a custom role:
# config file version
apiVersion: 2
roles:
- name: 'custom:reports:editor'
orgId: 1
state: 'absent'
force: true
You can also delete a custom role using the API. Refer to the RBAC HTTP API for more details.