RoleValues

This structure defines which groups defined in the SAML assertion attribute are to be mapped to the Grafana Admin and Editor roles in the workspace. SAML authenticated users not part of Admin or Editor role groups have Viewer permission over the workspace.

DashboardsMonitoringObservabilityVisualization

Properties

Name Type Description
admin object
editor object
View JSON Schema on GitHub

JSON Schema

amazon-managed-grafana-role-values-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-grafana/refs/heads/main/json-schema/amazon-managed-grafana-role-values-schema.json",
  "title": "RoleValues",
  "description": "This structure defines which groups defined in the SAML assertion attribute are to be mapped to the Grafana <code>Admin</code> and <code>Editor</code> roles in the workspace. SAML authenticated users not part of <code>Admin</code> or <code>Editor</code> role groups have <code>Viewer</code> permission over the workspace.",
  "type": "object",
  "properties": {
    "admin": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleValueList"
        },
        {
          "description": "A list of groups from the SAML assertion attribute to grant the Grafana <code>Admin</code> role to."
        }
      ]
    },
    "editor": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleValueList"
        },
        {
          "description": "A list of groups from the SAML assertion attribute to grant the Grafana <code>Editor</code> role to."
        }
      ]
    }
  }
}