Hi Ansible Experts,
Need to copy a file from Ansible tower server to remote server using copy 
module. Can you please help to achieve this using copy module or any other 
module in Ansible?

---
- name: Copy file to remote server
  gather_facts: no
  hosts: 127.0.0.1

  tasks:

   - name: Copy JSON file to remote server
      copy:
        dest: /apps/web/scripts/json
        src: /tmp/report.json
        remote_src: no
        owner: user
        group: group
        mode: 0644
      delegate_to: remote_server
      become_user: awx
      become: no




-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/fc22a4af-2341-4930-939d-5fa3df9b1187%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to