Help Me find path in module copy Ansible Tower

Posted on

I Have used module Ansible Copy file below
- name: Copy file with owner and permissions
ansible.builtin.copy:
src: /var/tmp
dest: /tmp
owner: foo
group: foo
mode: '0644'

So . the result Playbook don't find /var/tmp on the control node
Please help find path on control node ansible tower

Responses