infrastructure/os/config/roles/consul/tasks/main.yml
2021-03-23 17:12:13 +01:00

12 lines
413 B
YAML

- name: "Create consul configuration directory"
file: path=/etc/consul/ state=directory
- name: "Deploy consul configuration"
template: src=consul.json.j2 dest=/etc/consul/consul.json
- name: "Deploy consul systemd service"
copy: src=consul.service dest=/etc/systemd/system/consul.service
- name: "Enable consul systemd service at boot"
service: name=consul state=started enabled=yes daemon_reload=yes