diff options
Diffstat (limited to 'fdio.infra.ansible/roles/consul/templates/services.json.j2')
-rw-r--r-- | fdio.infra.ansible/roles/consul/templates/services.json.j2 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fdio.infra.ansible/roles/consul/templates/services.json.j2 b/fdio.infra.ansible/roles/consul/templates/services.json.j2 new file mode 100644 index 0000000000..3245ba92a4 --- /dev/null +++ b/fdio.infra.ansible/roles/consul/templates/services.json.j2 @@ -0,0 +1,13 @@ +{ + "services": [ +{% for item in consul_services %} + { + "name": "{{ item.name }}", + "port": {{ item.port }} + } +{%- if not loop.last %}, +{% endif %} +{% endfor %} + + ] +}
\ No newline at end of file |