You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.5 KiB
YAML

---
# defaults file for grafana_server
grafana_server_install_grafana: true
grafana_server_configure_grafana: true
grafana_server_validate_certs: false
grafana_server_app_mode: production
grafana_server_instance_name: ${HOSTNAME}
# Path default settings
grafana_server_paths_data: /var/lib/grafana
grafana_server_paths_temp_data_lifetime: 24h
grafana_server_paths_logs: /var/log/grafana # Recommended to be the full path to the directory
grafana_server_paths_plugins: /var/lib/grafana/plugins # Recommended to be the full path to the directory
grafana_server_paths_provisioning: /etc/grafana/conf/provisioning # Recommended to be the full path to the directory
grafana_server_paths_dashboards: /etc/grafana/conf/dashboards/
# Server default settings
grafana_server_enable_https: false
grafana_server_http_port: 3000
grafana_server_enable_gzip: true
grafana_server_enable_router_logging: false
grafana_server_enforce_domain: false
grafana_server_static_root_path: "public"
# Database default settings
grafana_server_db: sqlite
grafana_server_db_path: grafana.db
# Analytics default settings
grafana_server_analytics_reporting_enabled: false
grafana_server_analytics_feedback_links_enabled: true
# Security default settings
grafana_server_security_disable_initial_admin_account_creation: false
grafana_server_security_initial_admin_user: admin
grafana_server_security_initial_admin_password: grafana
# Dashboard default settings
grafana_server_dashboards_versions_to_keep: 20
# User default settings
grafana_server_users_allow_sign_up: false
grafana_server_users_allow_org_create: false
# Authentication default settings
grafana_server_login_cookie_name: "grafana_session"
grafana_server_inactive_lifetime_duration: 7d
grafana_server_maximum_lifetime_duration: 7d
grafana_server_cookie_max_age: 600
grafana_server_api_key_max_seconds_to_live: -1
## Anonymous authentication
grafana_server_anonymous_authentication_enabled: true
grafana_server_anonymous_authentication_org_name: Main Org.
grafana_server_anonymous_authentication_org_role: Viewer
grafana_server_anonymous_authentication_hide_version: false
## Basic authentication
grafana_server_basic_authentication_enabled: true
# Admin user
grafana_server_admin_user: root
grafana_server_admin_user_name: root
grafana_server_admin_password: "{{ vault_grafana_server_admin_password }}"
grafana_server_add_admin_user_to_default_organisation_as_admin: true
# Provisioning
grafana_server_provisioning_folders_from_filesystem: true
grafana_server_provisioning_dashboards_update_interval_seconds: 30
...