I am trying add organizations for each user that will be provisioned trough Azure AD.
Example:
User: teste — Org: Teste – Role : Viewer
User: teste2 — Org: TesteEditor – Role: Editor
Configuration by grafana.ini:
[auth.azuread]
…
…
…
role_attribute_path = contains(info.roles[], ‘admin’) && ‘Admin’ || contains(info.roles[], ‘editor’) && ‘Editor’ || contains(info.roles[*], ‘viewer’) && ‘Viewer’
allowed_domains =
allowed_groups =
allowed_organizations =
role_attribute_strict = false
org_attribute_path =
allow_assign_grafana_admin = false
force_use_graph_api = false
tls_skip_verify_insecure = false
tls_client_cert =
tls_client_key =
tls_client_ca =
use_pkce = true
skip_org_role_sync = false
use_refresh_token = true
Help-me please.