Add extra config

This commit is contained in:
SebClem 2023-06-21 15:00:55 +02:00
parent 126c45e646
commit 935d2d453a
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50
2 changed files with 15 additions and 0 deletions

View File

@ -260,3 +260,11 @@ grafana_environment: {}
grafana_panels: {}
# disable_sanitize_html: false
# enable_alpha: false
grafana_extra_config:
"unified_alerting.screenshots":
capture: true
external_image_storage:
provider: local
external_image_storage.local: {}

View File

@ -195,3 +195,10 @@ provider = {{ grafana_image_storage.provider }}
{{ k }} = {{ v }}
{% endfor %}
{% endif %}
{% for section in grafana_extra_config %}
[{{ section }}]
{% for entry, value in grafana_extra_config[section].items() %}
{{ entry }} = {{ value }}
{% endfor %}