grafana: Enable anonymous access
Allow unauthenticated users to view dashboards. Useful for Heads-Up Displays.collectd-buildroot
parent
5e2cfee8a1
commit
3c8e576841
|
@ -1,3 +1,4 @@
|
||||||
|
grafana_anonymous_enabled: true
|
||||||
grafana_ldap_enabled: true
|
grafana_ldap_enabled: true
|
||||||
grafana_http_addr: '[::1]'
|
grafana_http_addr: '[::1]'
|
||||||
grafana_ldap_host: dc0.pyrocufflink.blue
|
grafana_ldap_host: dc0.pyrocufflink.blue
|
||||||
|
|
|
@ -334,7 +334,7 @@ sigv4_auth_enabled = false
|
||||||
#################################### Anonymous Auth ######################
|
#################################### Anonymous Auth ######################
|
||||||
[auth.anonymous]
|
[auth.anonymous]
|
||||||
# enable anonymous access
|
# enable anonymous access
|
||||||
enabled = false
|
enabled = {{ grafana_anonymous_enabled|d|bool|string|lower }}
|
||||||
|
|
||||||
# specify organization name that should be used for unauthenticated users
|
# specify organization name that should be used for unauthenticated users
|
||||||
org_name = Main Org.
|
org_name = Main Org.
|
||||||
|
|
Loading…
Reference in New Issue