我知道访问 Ansible 事实有据可查,但我无法让这段代码正常工作。
# site.yml
---
- name: get fact
hosts: webservers
tasks:
- debug: msg="{{ hostvars['web01.example.com']['ansible_all_ipv4_addresses'] }}"
- fail:
当我运行它时,我得到这个错误:
fatal: [web01.example.com] => One or more undefined variables: 'dict object' has no attribute 'ansible_all_ipv4_addresses'
然而,当我运行命令“ansible -i inventory -m setup”时,我确实看到了字典键:
web01.example.com | success >> {
"ansible_facts": {
"ansible_all_ipv4_addresses": [
"<ip_address>"
],
(other objects...)
}
}
这是我的库存文件:
# inventory
[webservers]
web01.example.com ansible_host=<ip_address>
我也尝试了以下 hostvars 设置,但我得到了同样的错误:
hostvars['web01.example.com']['ansible_facts']['ansible_all_ipv4_addresses']
我在这里做错了什么?看起来这应该很容易。