使用with_items来替换with和loop语句。 示例代码如下:
- name: Example playbook
hosts: all
tasks:
- name: Example task
block:
- name: Example loop
debug:
msg: "{{ item }}"
with_items:
- foo
- bar
when: flag is defined