我正在尝试检查Ansible中的词典列表中是否存在某个键/值对。
我发现了这个问题,但是我不确定语法是否与python有不同(我在ansible中从未见过if语句!) Check if value already exists within list of dictionaries?
我已经尝试过when条件:
when: '"value" not in list'
但是我没有运气。
例如,列表看起来像:
list: [
{
"key1" : "value1",
"key2" : "value2",
"key3" : "value3"
},
{
"key1" : "value4",
"key2" : "value5",
"key3" : "value6"
},
and so on
我试图找出,例如,列表中的任何词典中是否存在"key2":"value5"
对。希望有一种方法可以做到这一点,如果对存在则给出true,否则为false?
任何提示将不胜感激!感谢。
答案 0 :(得分:6)
你走了:
- hosts: localhost
gather_facts: no
vars:
list_of_dicts: [
{
"key1" : "value1",
"key2" : "value2",
"key3" : "value3"
},
{
"key1" : "value4",
"key2" : "value5",
"key3" : "value3"
}]
tasks:
- debug:
msg: found
when: list_of_dicts | selectattr(search_key,'equalto',search_val) | list | count > 0
vars:
search_key: key3
search_val: value3