summaryrefslogtreecommitdiffstats
path: root/roles/grafana/templates/datasources/prometheus.yml.j2
blob: 431e565a71a876867f89408c0628aa67e8feed9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
apiVersion: 1

datasources:
{% for ds in grafana_datasources %}
  - name: "{{ ds.name }}"
    type: "{{ ds.type | default('prometheus') }}"
    uid: "{{ ds.uid }}"
    access: proxy
    url: "{{ ds.url }}"
    isDefault: {{ ds.default | default(false) }}
    editable: false
{% endfor %}