Description of problem: Currently all Ansible modules used in Job templates used non-fqcn format, as we switched to ansible-core 2.13.x, we should default the modules to fully-qualified collection name (FQCN) format Version-Release number of selected component (if applicable): Satellite 6.13 How reproducible: Steps to Reproduce: 1. Inspect any Job templates for example "Ansible Roles - Install from git" ~~~ --- - hosts: all tasks: - git: repo: "<%= input('git_repository') %>" dest: "<%= input('location') %>" register: out - debug: var=out ~~~ Actual results: all modules that we have in the Ansible related job templates uses non-FQCN format Expected results: All ansible modules should follow Ansible guidelines and switch to FQCN format Additional info: https://docs.ansible.com/ansible/latest/porting_guides/porting_guide_2.10.html