F I X E D
Main problem was in job template which takes care of the running of role.
“OLD version” - with wrong funkcionality
---
- name: "Run Ansible Role <%= input('role_name') %>"
hosts: "<%= @host.name %>"
roles:
- role: "<%= input('role_name') %>"
“NEW version” - with requested funkcionallity
---
- name: "Run Ansible Role <%= input('role_name') %>"
hosts: all
roles:
- role: "<%= input('role_name') %>"
Very trivial solution, but who can find it