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 6.6.9).

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

Input

list / elements=dictionary / required

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

attribute

string / required

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

Return value

dictionary

A dictionary containing the dictionaries from the list as values.

Returned: success

Authors

  • Felix Fontein (@felixfontein)

Hint

Configuration entries for each entry type have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up.