How can I copy more than a single file into remote nodes by Ansible in a task?
I\'ve tried to duplicate the copy module line in my task to define files but it only copie
Or you can use with_items:
- copy: src: "{{ item }}" dest: /etc/fooapp/ owner: root mode: 600 with_items: - dest_dir