Hi all, I’m pretty new to Ansible but trying to learn quickly. I was building a role and wanted to perform a check for required variables, and was trying to put them in a loop instead of individually. Here is what I am trying but I keep getting errors:
`
- name: Check for requirement variables
fail: msg=“Bailing out. This role requires {{ item }}”
when: {{ item }} is undefined
with_items: - nginx_domain
- nginx_port
`
Instead of having declare them individually like this:
`
-
name: Check for requirement nginx_domain
fail: msg=“Bailing out. This role requires ‘nginx_domain’”
when: nginx_domain is undefined -
name: Check for requirement nginx_port
fail: msg=“Bailing out. This role requires ‘nginx_port’”
when: nginx_domain is undefined
`
Is this possible? Or am I trying to fit a square peg in a round hole?
Thanks for any feedback
– BrianH