You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
306 B
YAML
16 lines
306 B
YAML
2 weeks ago
|
- name: print external items
|
||
|
debug:
|
||
|
msg: "{{ item }}"
|
||
|
|
||
|
- name: print internal items
|
||
|
debug:
|
||
|
msg: "{{ item }}"
|
||
|
with_list: "{{ internal_list }}"
|
||
|
|
||
|
- name: print both
|
||
|
debug:
|
||
|
msg: "{{ item }} {{ internal_item }}"
|
||
|
with_list: "{{ internal_list }}"
|
||
|
loop_control:
|
||
|
loop_var: internal_item
|