main.yml 293 B

123456789
  1. ---
  2. # Download all the files needed on workstation. Extract them if needed.
  3. # Rename the target directory if necessary. Remove after extract if so wanted.
  4. - name: Do the thing, in a loop.
  5. include_tasks: sequence.yml
  6. loop: "{{ pull_files}}"
  7. loop_control:
  8. label: "{{ item.name }}"
  9. ...