2
0

add consul config support

This commit is contained in:
Kevin Schmidt 2016-01-13 13:04:22 +00:00
parent 0fee3f58f2
commit ce6849247e

View File

@ -1045,3 +1045,12 @@ rest_tornado:
##########################################
{{ get_config('presence_events', 'False') }}
{% endif %}
{% if 'consul_config' in cfg_master %}
##### consul_config #####
##########################################
consul_config:
{% for name, value in cfg_master['consul_config'].items() %}
{{ name }}: {{ value }}
{%- endfor %}
{%- endif %}