1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-09 03:58:59 +00:00

[WIP] Start of subelements filter (#39829)

* Start of subelements filter

* Add docs for subelements filter
This commit is contained in:
Matt Martz 2018-05-23 10:54:13 -05:00 committed by Brian Coca
parent 46fbfd5d53
commit a5f05c6fc2
2 changed files with 106 additions and 0 deletions

View file

@ -184,6 +184,65 @@ into::
- key: Environment
value: dev
subelements Filter
``````````````````
.. versionadded:: 2.7
Produces a product of an object, and subelement values of that object, similar to the ``subelements`` lookup::
{{ users|subelements('groups', skip_missing=True) }}
Which turns::
users:
- name: alice
authorized:
- /tmp/alice/onekey.pub
- /tmp/alice/twokey.pub
groups:
- wheel
- docker
- name: bob
authorized:
- /tmp/bob/id_rsa.pub
groups:
- docker
Into::
-
- name: alice
groups:
- wheel
- docker
authorized:
- /tmp/alice/onekey.pub
- wheel
-
- name: alice
groups:
- wheel
- docker
authorized:
- /tmp/alice/onekey.pub
- docker
-
- name: bob
authorized:
- /tmp/bob/id_rsa.pub
groups:
- docker
- docker
An example of using this filter with ``loop``::
- name: Set authorized ssh key, extracting just that data from 'users'
authorized_key:
user: "{{ item.0.name }}"
key: "{{ lookup('file', item.1) }}"
loop: "{{ users|subelements('authorized') }}"
.. _random_filter:
Random Number Filter