community.general.groupby_as_dict filter – Transform a sequence of dictionaries to a dictionary where the dictionaries are indexed by an attribute
Note
This filter plugin is part of the community.general collection (version 9.4.0).
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.groupby_as_dict
.
New in community.general 3.1.0
Synopsis
Transform a sequence of dictionaries to a dictionary where the dictionaries are indexed by an attribute.
Input
This describes the input of the filter, the value before | community.general.groupby_as_dict
.
Parameter |
Comments |
---|---|
A list of dictionaries |
Positional parameters
This describes positional parameters of the filter. These are the values positional1
, positional2
and so on in the following
example: input | community.general.groupby_as_dict(positional1, positional2, ...)
Parameter |
Comments |
---|---|
The attribute to use as the key. |
Examples
- name: Arrange a list of dictionaries as a dictionary of dictionaries
ansible.builtin.debug:
msg: "{{ sequence | community.general.groupby_as_dict('key') }}"
vars:
sequence:
- key: value
foo: bar
- key: other_value
baz: bar
# Produces the following nested structure:
#
# value:
# key: value
# foo: bar
# other_value:
# key: other_value
# baz: bar
Return Value
Key |
Description |
---|---|
A dictionary containing the dictionaries from the list as values. Returned: success |