有时候我们会看到别人的ansible变量里引用hostvars,那么hostvars这个变量到底是什么呢?我们能不能把它打出来?
hostvars是ansible中间会生成的变量。我们可以通过一个简单的playbook把中间ansible所有的变量打印出来
vim get_all_var.yml
---
- hosts: "your host or group"
tasks:
- debug: var=vars
ansible-playbook -i inventory/your_inventory get_all_var.yml -vv
执行上条命令就可以把ansible执行过程中所有变量打印出来