2022-08-30 12:45:41 +00:00
|
|
|
---
|
|
|
|
- name: gather os specific variables
|
2022-08-31 03:19:06 +00:00
|
|
|
ansible.builtin.include_vars: "{{ lookup('first_found', params) }}"
|
2022-08-30 12:45:41 +00:00
|
|
|
vars:
|
2022-08-31 03:19:06 +00:00
|
|
|
params:
|
2022-08-30 12:45:41 +00:00
|
|
|
files:
|
|
|
|
- "{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml"
|
|
|
|
- "{{ ansible_distribution }}.yaml"
|
|
|
|
- "{{ ansible_os_family }}.yaml"
|
|
|
|
- "default.yaml"
|
|
|
|
paths:
|
|
|
|
- vars
|
|
|
|
|
|
|
|
- name: include os specific tasks
|
2022-08-31 03:19:06 +00:00
|
|
|
ansible.builtin.include_tasks: "{{ lookup('first_found', params) }}"
|
2022-08-30 12:45:41 +00:00
|
|
|
vars:
|
2022-08-31 03:19:06 +00:00
|
|
|
params:
|
2022-08-30 12:45:41 +00:00
|
|
|
files:
|
|
|
|
- "{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml"
|
|
|
|
- "{{ ansible_distribution }}.yaml"
|
|
|
|
- "{{ ansible_os_family }}.yaml"
|
|
|
|
- "default.yaml"
|
|
|
|
paths:
|
|
|
|
- tasks
|
|
|
|
|
|
|
|
- name: install
|
|
|
|
package:
|
|
|
|
name: "{{ consul_package_name | default('consul') }}"
|
|
|
|
state: "{{ consul_package_state | default('present') }}"
|
|
|
|
|
|
|
|
- name: configure
|
|
|
|
template:
|
|
|
|
src: "{{ consul_config_template }}"
|
|
|
|
dest: "{{ consul_config_path }}"
|
|
|
|
owner: "{{ consul_config_owner }}"
|
|
|
|
group: "{{ consul_config_group }}"
|
|
|
|
mode: "{{ consul_config_mode }}"
|
|
|
|
notify: restart consul
|
|
|
|
|
|
|
|
- name: service
|
|
|
|
service:
|
|
|
|
name: "{{ consul_service_name | default('consul') }}"
|
|
|
|
state: "{{ consul_service_state | default('started') }}"
|
|
|
|
enabled: "{{ consul_service_enabled | default(true) }}"
|
|
|
|
|
2022-08-31 03:19:06 +00:00
|
|
|
- ansible.builtin.include_tasks: forward-unbound.yaml
|
2022-08-30 12:45:41 +00:00
|
|
|
when: consul_unbound_enabled
|