ansible - 从清单中获取所有主机名和相应的 ansible_host 值的列表

ansible - 从清单中获取所有主机名和相应的 ansible_host 值的列表

我的库存如下:

db0 ansible_host=10.0.0.1
db1 ansible_host=10.0.0.2
app0 ansible_host=10.0.0.3
app1 ansible_host=10.0.0.4
...

从中,我需要提取如下列表:

- name: db0
  ip: 10.0.0.1
- name: db1
  ip: 10.0.0.2
- name: app0
  ip: 10.0.0.3
- name: app1
  ip: 10.0.0.4

我知道我可以使用 获取所有主机groups['all']

我还可以ansible_host使用 获取每个主机的值hostvars['<hostname>']['ansible_host']

我该如何将它们结合起来以创建我需要的列表?

答案1

例如

host_ip: "{{ dict(ansible_play_hosts_all|
                  zip(ansible_play_hosts_all|
                      map('extract', hostvars, 'ansible_host'))) }}"

创建字典

  host_ip:
    app0: 10.0.0.3
    app1: 10.0.0.4
    db0: 10.0.0.1
    db1: 10.0.0.2

然后,使用字典2项目创建列表

host_ip_list: "{{ host_ip|dict2items(key_name='name',
                                     value_name='ip') }}"

给出预期的结构

  host_ip_list:
  - ip: 10.0.0.1
    name: db0
  - ip: 10.0.0.2
    name: db1
  - ip: 10.0.0.3
    name: app0
  - ip: 10.0.0.4
    name: app1

相关内容