fix: 🔧 Correct role attribute path casing in Grafana config

Correct the casing of the 'DevFW' group reference in the role attribute path to 'devfw' for consistency and to ensure proper access control in Grafana.
This commit is contained in:
Daniel Sy 2025-08-13 15:26:32 +02:00
parent 9dab4ea0c8
commit b87567568d
Signed by: Daniel.Sy
GPG key ID: 1F39A8BBCD2EE3D3

View file

@ -57,5 +57,5 @@ spec:
token_url: https://dex.observability.t09.de/token
api_url: https://dex.observability.t09.de/userinfo
redirect_uri: https://grafana.observability.t09.de/login/generic_oauth
role_attribute_path: "contains(groups[*], 'DevFW') && 'GrafanaAdmin' || 'Editor'"
role_attribute_path: "contains(groups[*], 'devfw') && 'GrafanaAdmin' || 'Editor'"
allow_assign_grafana_admin: "true"