additional course material RH294
Olaf Bohlen
2020-08-20 1de6236f80a879ca110981fe0e5c0c05c521225b
commit | author | age
1de623 1 ---
OB 2 - name: flatten a list
3   hosts: localhost
4   gather_facts: false
5   become: false
6   vars:
7     nameservers:
8       - 1.1.1.1
9       - 8.8.8.8
10   tasks:
11     - debug:
12         msg: "{{ nameservers | join(' ') }}"