When I run the following action:
- name: Find extension file names from given starting string patterns
ansible.builtin.find:
paths: /my/dir/with/vsix_file
patterns: "{{ item }}*.vsix"
register: found_vsixs
loop:
- alefragnani.Bookmarks
- bradzacher.vscode-copy-filename
- streetsidesoftware.code-spell-checker
- pucelle.run-on-save
...
found_vsixs
contains a list of complex dictionaries. In each item
of this list the relevant information is in item.files[0].path
.
How can I create via Ansible a new variable which only contains a list of these paths without all the other invocation details?
(This would have the advantage that in subsequent steps I don’t have all the unnecessary information in my log, etc.)
Many thanks for any pointers!