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.
|
- 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
|