community.general.flattened (2.5.9) — lookup

return single list completely flattened

Authors: Serge van Ginderachter (!UNKNOWN) <serge@vanginderachter.be>

Install collection

Install with ansible-galaxy collection install community.general:==2.5.9


Add to requirements.yml

  collections:
    - name: community.general
      version: 2.5.9

Description

given one or more lists, this lookup will flatten any list elements found recursively until only 1 list is left.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: "'unnest' all elements into single list"
  ansible.builtin.debug:
    msg: "all in one list {{lookup('community.general.flattened', [1,2,3,[5,6]], [a,b,c], [[5,6,1,3], [34,a,b,c]])}}"

Inputs

    
_terms:
    description: lists to flatten
    required: true

Outputs

_raw:
  description:
  - flattened list
  type: list