samples/with_items.yml
63c2d616
 - hosts: localhost
   connection: local
   vars:
     my_list:
     - a
     - b
     - c
   gather_facts: no
   tasks:
   - debug: msg="item is {{item}}"
     with_items: my_list