Ansible 过滤列表变量中的元素

ansible的变量可以是 字符串 ,列表,字典,最近有这么一个需求,就是把内置的一个列表变量的某个特定元素从列表中 去除掉 。比如

ansible 10.1.10.1  -m shell -a 'echo {{ group_names|to_json }}' 

结果是

10.1.10.1 | CHANGED | rc=0 >>
[app1, app2, app3, app4, null]

这里就是 10.111.10.1所在的的所有组的列表,其中null是个干扰项,我们要剔除,怎么办呢?这么办!

ansible 10.1.10.1  -m shell -a 'echo {{ group_names|difference(["null"])|to_json |regex_replace('-hw','') }}'
#regex_replace就是对每个元素都进行了替换 

百度了一上午都没有结果 ,终于在官网找到了解决方案
https://docs.ansible.com/ansible/latest/user_guide/playbooks_filters.html

在playbook里面,这种列表变量的操作很有用

你可能感兴趣的:(ansible,ansible)