Hi,
Is it possible to combine with_items with when? so i.e.
- name: Vhosts apache config
template: src=apache_vhost.j2 dest=/etc/apache2/sites-available/{{ item.domain }}.conf
with_items: apache.vhosts
when: "ansible_os_family == 'Debian' and item.state == 'availible'"
tags:
- apache
notify:
- reload apache2
For this I get: error while evaluating conditional
so I can choose for the loop if it is run according to an property set on this item?
If not is there a workaround or anything for it?
Thanks