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
- name: Your copy task copy: src={{ item.src }} dest={{ item.dest }} with_items: - { src: 'containerizers', dest: '/etc/mesos/containerizers' } - { src: 'another_file', dest: '/etc/somewhere' } - { src: 'dynamic', dest: '{{ var_path }}' } # more files here