1
0
Fork 0

Add client metadata

This commit is contained in:
Guillaume Thouvenin 2016-11-17 14:20:02 +01:00
parent 13574258bc
commit 18fe0c04c7
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{%- from "grafana/map.jinja" import client with context %}
{%- if client.enabled %}
{%- if client.get('enabled', False) %}
/etc/salt/minion.d/_grafana.conf:
file.managed:
@ -22,7 +22,7 @@ grafana_client_datasource_{{ datasource_name }}:
- user: {{ datasource.user }}
- password: {{ datasource.password }}
{%- endif %}
{%- if datasource.get('is_default', false) %}
{%- if datasource.get('is_default', False) %}
- is_default: {{ datasource.is_default|lower }}
{%- endif %}
{%- if datasource.database is defined %}

View File

@ -0,0 +1,6 @@
applications:
- grafana.client
parameters:
grafana:
client:
enabled: true