Skip to content
Snippets Groups Projects
Commit 5b08277c authored by Flavio Percoco Premoli's avatar Flavio Percoco Premoli Committed by Matthew Mosesohn
Browse files

Access dict item's value keys using .value (#1865)

parent 5dc56df6
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
with_dict: "{{ downloads }}" with_dict: "{{ downloads }}"
when: when:
- not skip_downloads|default(false) - not skip_downloads|default(false)
- item.enabled - item.value.enabled
- name: "Sync container" - name: "Sync container"
include: sync_container.yml include: sync_container.yml
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
with_dict: "{{ downloads }}" with_dict: "{{ downloads }}"
when: when:
- not skip_downloads|default(false) - not skip_downloads|default(false)
- item.enabled - item.value.enabled
- item.container - item.value.container
- download_run_once - download_run_once
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment