in my AWX i have 2x ansible Git projects (internal SCM)
Till now i have been doing something like this on my local ansible host (no awx)
project1/role/abc/tasks/main.yml
project2/roles/edf/tasks/main.yml
Whilst in project1 directory and running a standard ansible-playbook with role “abc”, I am able to include a role from project2 using the relative path, example:
include_role:
name: …/project2/roles/edf
Works fine, however this is broken when i move to awx and it cant find the roles within the awx structure.
I read something about a requirements.yml, will this apply here? If so do i reference a project in awx (how) or directly the git scm of project2?