- name: copy three files in three different folders hosts: all tasks: - copy: src: "{{ item.a }}" dest: "{{ item.b }}" with_items: - { a: '/etc/passwd', b: '/tmp' } - { a: '/etc/group', b: '~/test'} - { a: '/etc/shadow', n: '/mnt'}