Ansible 从 vars_file 读取多个同名变量

Ansible read multiple variables with same name from vars_file

在我的 ~/ip_vars_file 中,我有

ip : 10.20.30
ip : 10.20.31
ip : 10.20.32

这是用lineinfile创建的,

lineinfile: line="ip{{':'}} {{item.public_ip}}"
              dest="{{ansible_env.HOME}}/ip_vars_file}}"
with_items: servers.tagged_instances #servers is registered in previous task

我无法将所有三个 ip 读取为 with_items。我只获得剧本中的最后一个 IP。

---
- hosts: localhost
  tasks:
  - name: print ips
    debug:
      var: item 
    with_items: "{{ ip }}"

  vars_files:
  - ~/ip_vars_file

我得到的输出是,

TASK [print ips] ***************************************************************
ok: [localhost] => (item=10.20.32) => {
    "item": "10.20.32"
}

我想要的输出是这样的

TASK [print ips] ***************************************************************
ok: [localhost] => (item=10.20.32) => {
    "item": "10.20.30"
    "item": "10.20.31"
    "item": "10.20.32"
}

我想一个一个地迭代ips。我该如何实现?

基本上,我想在启动时存储实例的 ip,稍后在部署期间使用它们。但是当我启动多个具有相同名称的实例时我被卡住了

您要定义一个列表:

---
ip:
  - 10.20.30
  - 10.20.31
  - 10.20.32