For now I have a playbook looks like
- hosts: hws
gather_facts: no
vars_files:
- variables.yml
roles:
- role: hypervisor
- hosts: vms
gather_facts: no
vars_files:
- variables.yml
roles:
- role: web-server
and it looks ugly. How to set
gather_facts: no
vars_files:
- variables.yml
globally for every hosts in entire file?