1
現在我有一個劇本看起來像如何爲Ansible的劇本中的所有主機全局設置params/vars?
- 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
,它看起來醜陋。如何設置
gather_facts: no
vars_files:
- variables.yml
全局爲整個文件中的每個主機?
非常感謝您的回答!我將我的常用變量文件移動到** group_vars/all **並將** collect = explicit'字符串添加到** ansible.cfg **並獲得我想要的! – HeroFromEarth