私はansibleプレイブックを書いています。このプレイブックでは、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を1つの変数に割り当て、10.2.2.2を別の変数に割り当てたいと思います。
どうすればいいですか?
awkでは、次のように見えます。
$ awk -F";" '$3=="aaa.domain.tld"&&$4=="db"{print $5;}' test.csv
10.1.1.1
$
リストをフィルタリングするにはプレイブック方式が必要です。
心からあなたの
マリオ
答え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