无法阅读Ansible事实

时间:2016-03-24 18:52:47

标签: ansible ansible-playbook ansible-facts

我知道访问Ansible事实是well documented,但我无法使用此代码。

# 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']

我在这里做错了什么?看起来这应该很容易。

2 个答案:

答案 0 :(得分:1)

与ansible有点混淆,但你只是使用(中间没有ansible_facts):

hostvars['web01.example.com']['ansible_all_ipv4_addresses']

或@oley发布

hostvars[inventory_hostname]['ansible_all_ipv4_addresses']

用于任务中的相应主机

在您发布的文档中,中间始终没有ansible_facts,但很容易忽略:)

答案 1 :(得分:-1)

这应该可以解决问题:

- debug: msg="{{ hostvars[inventory_hostname]['ansible_all_ipv4_addresses'] }}"