From 9f8c8f34c6cf9e1c2051a7245efcadaa61659c2b Mon Sep 17 00:00:00 2001 From: Austin Swinney Date: Wed, 15 Apr 2026 14:46:13 -0400 Subject: [PATCH] Enable anonymous read-only access to Grafana dashboards Allow unauthenticated users to view Grafana dashboards without login. Anonymous users get the Viewer role in the default org, so they can see dashboards but cannot edit them or change settings. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/cli/templates/grafana/grafana.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cli/templates/grafana/grafana.ini b/src/cli/templates/grafana/grafana.ini index 8ab1a1f1c..e425dc55a 100644 --- a/src/cli/templates/grafana/grafana.ini +++ b/src/cli/templates/grafana/grafana.ini @@ -554,13 +554,13 @@ #################################### Anonymous Auth ###################### [auth.anonymous] # enable anonymous access -;enabled = false +enabled = true # specify organization name that should be used for unauthenticated users -;org_name = archi +org_name = Main Org. # specify role for unauthenticated users -;org_role = Viewer +org_role = Viewer # mask the Grafana version number for unauthenticated users ;hide_version = false