ansible 从列表中选择一个值

ansible 从列表中选择一个值

我正在写一本 ansible 剧本。在此 Playbook 中,我使用函数 read_csv 将 csv 读入列表。

csv 文件具有以下格式:

Name;Hostname;fqdn;Typ;IPAddress
aaa_nfs_db;aaa;aaa.domain.tld;db;10.1.1.1
aaa_nfs_log;aaa;aaa.domain.tld;log;10.2.2.2
bbb_nfs_db;bbb;bbb.domain.tld;db;10.3.3.3
bbb_nfs_log;bbb;bbb.domain.tld;log;10.4.4.4

我在 aaa.domain.tld 上运行剧本,我想将 10.1.1.1 分配给一个变量,将 10.2.2.2 分配给另一个变量。

我怎样才能做到这一点?

在 awk 中它看起来像这样:

$ awk -F";" '$3=="aaa.domain.tld"&&$4=="db"{print $5;}' test.csv
10.1.1.1
$ 

我需要 ansible Playbook 方式来过滤列表。

您忠诚的

马里奥

答案1

使用相应的方法将 csv 加载到变量后read_csv模块selectattr,您可以使用常用的过滤工具( 、map、 ...)过滤并选择列表中的值

对于演示,我将您的上述文件放在files/example.csv.然后是以下内容playbook.yml

---
- name: Parse csv and filtering demo
  hosts: localhost
  gather_facts: false

  tasks:
    - name: read in our csv file in a list
      read_csv:
        path: files/example.csv
        delimiter: ;
      register: hosts_info

    - name: Show the entire info we parsed (if running with `-v`)
      debug:
        var: hosts_info.list
        verbosity: 1

    - name: Show ip depending on fqdn and type
      vars:
        ip: >-
          {{
            hosts_info.list
            | selectattr('fqdn', '==', item.fqdn)
            | selectattr('Typ', '==', item.type)
            | map(attribute='IPAddress')
            | list
            | first
          }}
      debug:
        msg: "The ip of {{ item.fqdn }} for type {{ item.type }} is {{ ip }}"
      loop:
        - fqdn: aaa.domain.tld
          type: db
        - fqdn: aaa.domain.tld
          type: log

给出(运行以-v查看中间调试)

$ ansible-playbook playbook.yml 

PLAY [Parse csv and filtering demo] ****************************************************************************************************************************************************************************************************

TASK [read in our csv file in a list] **************************************************************************************************************************************************************************************************
ok: [localhost]

TASK [Show the entire info we parsed (if running with `-v`)] ***************************************************************************************************************************************************************************
skipping: [localhost]

TASK [Show ip depending on fqdn and type] **********************************************************************************************************************************************************************************************
ok: [localhost] => (item={'fqdn': 'aaa.domain.tld', 'type': 'db'}) => {
    "msg": "The ip of aaa.domain.tld for type db is 10.1.1.1"
}
ok: [localhost] => (item={'fqdn': 'aaa.domain.tld', 'type': 'log'}) => {
    "msg": "The ip of aaa.domain.tld for type log is 10.2.2.2"
}

PLAY RECAP *****************************************************************************************************************************************************************************************************************************
localhost                  : ok=2    changed=0    unreachable=0    failed=0    skipped=1    rescued=0    ignored=0

相关内容