renew_consul_certificates/molecule/with_custom_config_vagrant/prepare.yml

17 lines
324 B
YAML
Raw Permalink Normal View History

---
- name: Prepare
hosts: all
2023-12-03 17:16:39 +00:00
become: true
tasks:
- name: "Create group consul"
ansible.builtin.group:
name: "consul"
state: present
- name: "Create user consul"
ansible.builtin.user:
name: "consul"
group: "consul"
shell: /bin/false
state: present