Fix Telegraf configuration template

Remove the erroneous curly braces that prevent the Telegraf
configuration template from being rendered.

Change-Id: Ibb8738b258245b4e43d5d877b156ed296fc66e4e
Closes-Bug: 1810505
This commit is contained in:
Nick Jones 2019-01-04 12:08:53 +00:00
parent 2ed4649ebd
commit 683f65aaf3
No known key found for this signature in database
GPG Key ID: F6D24C8669938334
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@
{% endif %}
{% if inventory_hostname in groups['redis'] and enable_redis | bool %}
[[inputs.redis]]
servers = ["{{ tcp://:{{ redis_master_password }}@{{ api_interface_address }}:{{ redis_port }}"]
servers = ["tcp://:{{ redis_master_password }}@{{ api_interface_address }}:{{ redis_port }}"]
{% endif %}
{% if inventory_hostname in groups['zookeeper'] and enable_zookeeper | bool %}
[[inputs.zookeeper]]