Skip to content

Instantly share code, notes, and snippets.

@prune998
Created August 14, 2015 13:40
Show Gist options
  • Save prune998/9822d6724f82c6b2ba77 to your computer and use it in GitHub Desktop.
Save prune998/9822d6724f82c6b2ba77 to your computer and use it in GitHub Desktop.
---
- hosts: localhost
user: belisarius
vars:
test:
- [ "uid", ["val1","val2"]]
- [ "uid2", ["val1","val2"]]
tasks:
- debug: msg="{{ test }}"
# result is :
# "msg": "[['uid', ['val1', 'val2']], ['uid2', ['val1', 'val2']]]"
- debug: msg="{{ item }}"
with_items: test
# expected result is :
# "msg": "['uid', ['val1', 'val2']]"
# "msg": "['uid2', ['val1', 'val2']]"
# real result is :
# "msg": "uid"
# "msg": "['val1', 'val2']"
# "msg": "uid2"
# "msg": "['val1', 'val2']"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment