community.general.cartesian (8.5.0) — lookup

returns the cartesian product of lists

Authors: Unknown (!UNKNOWN)

Install collection

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


Add to requirements.yml

  collections:
    - name: community.general
      version: 8.5.0

Description

Takes the input lists and returns a list that represents the product of the input lists.

It is clearer with an example, it turns [1, 2, 3], [a, b] into [1, a], [1, b], [2, a], [2, b], [3, a], [3, b]. You can see the exact syntax in the examples section.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Example of the change in the description
  ansible.builtin.debug:
    msg: "{{ lookup('community.general.cartesian', [1,2,3], [a, b])}}"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: loops over the cartesian product of the supplied lists
  ansible.builtin.debug:
    msg: "{{item}}"
  with_community.general.cartesian:
    - "{{list1}}"
    - "{{list2}}"
    - [1,2,3,4,5,6]

Inputs

    
_terms:
    description:
    - a set of lists
    elements: list
    required: true
    type: list

Outputs

_list:
  description:
  - list of lists composed of elements of the input lists
  elements: list
  type: list