ansible-personal/nomads.yml
Alan Orth ffe7a872dd
roles: strict truthy values
According to Ansible we can use yes, true, True, "or any quoted st-
ring" for a boolean true, but ansible-lint wants us to use either
true or false.

See: https://chronicler.tech/red-hat-ansible-yes-no-and/
2022-09-10 22:33:19 +03:00

13 lines
148 B
YAML

---
# file: nomads.yml
- hosts: nomads
become: true
roles:
- common
- munin
vars_files:
- vars/ipsets.yml
# vim: set sw=2 ts=2: