L
Size: a a a
VZ
VZ
VZ
VZ
L
- set_fact:
masters: '{{ masters | default(0) + 1 }}'
when: 'hostvars[item]["your_var"] == "master"'
loop: '{{ groups["your_group"] }}'
run_once: yes
- assert:
that:
- 'master == 1'
fail_msg: "You should have one and ONLY ONE master in variables!!!"
run_once: yesVZ
VZ
VZ
VZ