github.com/mmatczuk/gohan@v0.0.0-20170206152520-30e45d9bdb69/extension/gohanscript/examples/with_items.yaml (about)

     1  vars:
     2    person:
     3      name: "John"
     4      age: "30"
     5  tasks:
     6  - debug: msg="{{ item.key }} {{ item.value }}"
     7    with_dict:
     8      name: "John"
     9      age: "30"
    10  - debug: msg="{{ item.key }} {{ item.value }}"
    11    with_dict: $person