dict’ов, которые создались при register?
Пример.
- name: get sha1 checksum
stat:
path: "{{ home_dir }}/repos/{{ item.id }}.zip"
checksum_algorithm: sha1
with_items:
- "{{ engines.components }}"
register: local_sha
- name: Read sha1 of defined engines on artifactory
uri:
url: "{{engines.url}}/{{item.group_id}}/{{item.id}}/{{item.version}}/{{item.id}}-{{item.version}}.zip.sha1"
return_content: yes
validate_certs: no
with_items: "{{ engines.components }}"
register: remote_sha
Вариант -
debug:
msg: "{{ item.stat.checksum }} and {{ item.content }}"
with_items:
- "{{ local_sha.results }}"
- "{{ remote_sha.results }}"
не работает
копайте в сторону with_nested
Скорее всего, это делать не нужно
Обсуждают сегодня