Given this list:
colors:
red: enabled
yellow: enabled
green: disabled
blue: enabled
purple: disabled
How can I get a list of the colors that are enabled (below doesn't work):
- debug:
msg: "{{ item[0] }}"
when: item[1] == 'enabled
with_items: '{{ colors}}'
Guess I'm overthinking this as it seems like it should be quite simple. Thanks in advance.