ansible-development-environ.../roles/bootstrap/tasks/assert.yml

17 lines
406 B
YAML

---
- name: test if bootstrap_wait_for_host is set correctly
ansible.builtin.assert:
that:
- bootstrap_wait_for_host is defined
- bootstrap_wait_for_host is boolean
quiet: yes
- name: test if bootstrap_timeout is set correctly
ansible.builtin.assert:
that:
- bootstrap_timeout is defined
- bootstrap_timeout is number
- bootstrap_timeout >= 0
quiet: yes