Tristan Le Guern

--- - hosts: localhost gather_facts: no vars: list1: - 1 - 2 - 3 list2: - 4 - 5 - 6 tasks: - debug: var: list1 - debug: var: list2 - debug: msg: "{{ list1 + list2 }}"

Merge two lists