ansible.builtin.list (v2.16.5) — lookup

simply returns what it is given.

| "added in version" 2.0 of ansible.builtin"

Authors: Ansible Core Team

Install Ansible via pip

Install with pip install ansible-core==2.16.5

Description

this is mostly a noop, to be used as a with_list loop when you dont want the content transformed in any way.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: unlike with_items you will get 3 items from this loop, the 2nd one being a list
  ansible.builtin.debug: var=item
  with_list:
    - 1
    - [2,3]
    - 4

Outputs

_list:
  description: basically the same as you fed in
  elements: raw
  type: list