Why Ansible task failed?

HI @Inderpreet @Tej-Singh-Rana @royki @akshayyw @juliettet
I’ve assigned a task to run a playbook via jump host on App Server 3
THe playbook go executed cleanly as well as the ping too
Still the task got failed!!
Please look at the screenshot below.

Hi @Ashu27,

Make sure to add all of the app server hosts to /home/thor/ansible/inventory:

[all]
stapp01 ansible_host=172.16.238.10 ansible_ssh_pass=Ir0nM@n ansible_user=tony
stapp02 ansible_host=172.16.238.11 ansible_ssh_pass=Am3ric@ ansible_user=steve
stapp03 ansible_host=172.16.238.12 ansible_ssh_pass=BigGr33n ansible_user=banner

Also, make ./inventory the default inventory file to be read in ansible.cfg:

sudo vi ansible.cfg
# add => set your inventory file
[defaults]
inventory = ./inventory
remote_user = thor

…see if this helps:-)

Good luck!