blob: afa0f5eb0d71be1e91409edfc7bc1dd1a914ddf1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# {{ ansible_managed }}
#
# Schema definitions for Whisper files. Entries are scanned in order,
# and first match wins. This file is scanned for changes every 60 seconds.
{% for schema in graphtie_carbon_storage_schemas %}
[{{ schema.name }}]
{% for name,value in schema.options.items() | sort(attribute='0') %}
{{ name }} = {{ value }}
{% endfor %}
{% endfor %}
|