ansible-role-influxdb/templates/influxdb.conf.j2

14 lines
386 B
Text
Raw Normal View History

2019-04-12 17:14:25 +00:00
# {{ ansible_managed }}
2020-02-12 21:13:42 +00:00
{% for section, options in influxdb_full_config.items() %}
2019-04-12 17:14:25 +00:00
[{{ section }}]
2020-02-12 21:13:42 +00:00
{% for option, value in options.items() %}
2019-04-12 17:14:25 +00:00
{{ option }} = {% if value is sameas true %}true
{% elif value is sameas false %}false
{% elif value is string %}"{{ value }}"
{% elif value is number %}{{ value }}
{% else %}["{{ value|join('", "') }}"]
{% endif %}
{% endfor %}
{% endfor %}