ansible include vars from folder different that vars folder for roles
In ansible project I have a folder with multiple yaml files with variables. I am fetching these variables to playbook using include_vars module. But now I have to fetch these variables from roles used by playbooks and include_vars module uses vars folder inside role folder so i am unable to fetch variable files from my folder outside the role folder (if the path is relative and the task is inside a role, it will look inside the role’s vars/ subdirectory). Can someone advice how can I fetch vars from folder outside roles when I am using relative path to this folder?