I have a playbook like:
- hosts: GROUP1
remote_user: ubuntu
become: true
gather_facts: False
roles:
- role: role1
- role: role2
The in group_var
GROUP1 has php7 packages
GROUP2 has php5 packages
when I run the runbook both php5 and php7 variables are getting pulled in
ansible-playbook -vvv is showing both lists of packages, but I can't figure out
how the php5 variables are getting pulled in since the GROUP1 file only has php7 packages listed
There are no host_var files. Don't even have a host_var folder
Other than -vvv is there a way to see where variables are coming from or which variable files are getting included?