From fe5f8c65ccaa2d05f245b12dee644c36773b39da Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Sun, 9 Jul 2023 16:39:32 +0300 Subject: [PATCH] Remove misleading double-quotes around GF_AUTH_GENERIC_OAUTH_ROLE_ATTRIBUTE_PATH --- docs/services/grafana.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/services/grafana.md b/docs/services/grafana.md index 1f55f55..78bfe34 100644 --- a/docs/services/grafana.md +++ b/docs/services/grafana.md @@ -108,7 +108,7 @@ grafana_environment_variables_additional_variables: | #GF_AUTH_OAUTH_AUTO_LOGIN="true" GF_AUTH_GENERIC_OAUTH_ALLOW_ASSIGN_GRAFANA_ADMIN=true # Optionally map user groups to Grafana roles - GF_AUTH_GENERIC_OAUTH_ROLE_ATTRIBUTE_PATH="contains(groups[*], 'Grafana Admins') && 'Admin' || contains(groups[*], 'Grafana Editors') && 'Editor' || 'Viewer'" + GF_AUTH_GENERIC_OAUTH_ROLE_ATTRIBUTE_PATH=contains(groups[*], 'Grafana Admins') && 'Admin' || contains(groups[*], 'Grafana Editors') && 'Editor' || 'Viewer' ``` Make sure the user you want to login as has an email address in authentik, otherwise there will be an error.