Skip to content

Instantly share code, notes, and snippets.

@VerosK
Forked from oskar456/data.yaml
Last active October 18, 2020 19:30
Show Gist options
  • Save VerosK/16106694f70f2fc61ef44b09c40c1ed4 to your computer and use it in GitHub Desktop.
Save VerosK/16106694f70f2fc61ef44b09c40c1ed4 to your computer and use it in GitHub Desktop.
Ansible bug with datetime in data
---
data_1:
- id: 1
key: hello
- id: 2
key: world
data_2:
- id: 1
key: 2020-10-18
- id: 2
key: 2020-10-19
...
- hosts: localhost
become: no
vars_files: data.yml
tasks:
- debug:
var: item.id
loop: "{{ data_1 }}"
- debug:
var: foo.id
loop: "{{ data_2 }}"
loop_control:
loop_var: foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment