43 lines
997 B
Text
43 lines
997 B
Text
{% from slspath+"/map.jinja" import consul with context %}
|
|
|
|
consul-config:
|
|
file.managed:
|
|
- name: /etc/consul.d/config.json
|
|
{% if consul.service != False %}
|
|
- watch_in:
|
|
- service: consul
|
|
{% endif %}
|
|
- user: consul
|
|
- group: consul
|
|
- require:
|
|
- user: consul
|
|
- contents: |
|
|
{{ consul.config | json }}
|
|
|
|
{% for script in consul.scripts %}
|
|
consul-script-install-{{ loop.index }}:
|
|
file.managed:
|
|
- source: {{ script.source }}
|
|
- name: {{ script.name }}
|
|
- template: jinja
|
|
- user: consul
|
|
- group: consul
|
|
- mode: 0755
|
|
{% endfor %}
|
|
|
|
consul-script-config:
|
|
file.managed:
|
|
- source: salt://{{ slspath }}/files/services.json
|
|
- name: /etc/consul.d/services.json
|
|
- template: jinja
|
|
{% if consul.service != False %}
|
|
- watch_in:
|
|
- service: consul
|
|
{% endif %}
|
|
- user: consul
|
|
- group: consul
|
|
- require:
|
|
- user: consul
|
|
- context:
|
|
register: |
|
|
{{ consul.register | json }}
|