I have this JSON as input:
{
"users": {
"alpha": [
"read",
"annotate",
"write",
"delete",
"manage"
],
"beta": [
"read",
"annotate",
"write",
"delete",
"manage"
],
"gamma": [
"read",
"annotate",
"write",
"delete"
],
"delta": [
"read",
"annotate",
"write",
"delete",
"manage"
]
}
}
And I've been asked to return the lists (users
) only if they contain the element manage
. Since this has to be processed with Ansible filter json_query
, it should use only the JMESPath query language.
Expected result is something like:
["alpha", "beta", "delta"]
Try this
It's an analogy to (credit @Zeitounator)
Q: "Do you always need a list?"
A: In most cases yes, but not always. It depends on what you want to achieve. For example, the dictionary is fine if you want to find out whether all users contain the element manage or not
gives
Test the list
Or, you can find out whether any user contains the element manage