Copy file from src and dest (remote server) fails

Hi,
I have installed AWX 17.0.1 on Ubuntu OS. I am trying to run a simple playbook which would copy a zip file from the controller machine (source machine) to a remote SUSE linux host (/tmp/) location. When i launch the job from AWX UI, i get this error whereas when i run the ansible playbook via CLI it works fine.

What could be wrong here?

Error msg seen:

{
“msg”: “Source /tmp/crowdStrike.zip not found”,
“invocation”: {
“module_args”: {
“directory_mode”: null,
“force”: true,
“remote_src”: true,
“_original_basename”: null,
“owner”: “root”,
“follow”: false,
“local_follow”: null,
“group”: “root”,
“unsafe_writes”: null,
“setype”: null,
“content”: null,
“serole”: null,
“dest”: “/tmp/crowdStrike.zip”,
“selevel”: null,
“regexp”: null,
“validate”: null,
“src”: “/tmp/crowdStrike.zip”,
“checksum”: null,
“seuser”: null,
“delimiter”: null,
“mode”: “0755”,
“attributes”: null,
“backup”: false
}
},
“_ansible_no_log”: false,
“changed”: false

cat main.yml

:point_up_2:Pretty obvious :point_up_2:

Where is the file located in relation to the remote host? Your playbook is written to look for that file and it seems not to exist in the location provided.

Thanks,

AWX Team