diff --git a/coreos-config/playbook.yaml b/coreos-config/playbook.yaml index 9754e6b..55a9ef6 100644 --- a/coreos-config/playbook.yaml +++ b/coreos-config/playbook.yaml @@ -25,6 +25,8 @@ dest: '{{ render_path }}/{{ item.path }}' changed_when: false with_filetree: './compose' + loop_control: + label: '{{ item.path }}' when: item.state == 'directory' - name: Template Compose structure ansible.builtin.template: @@ -33,6 +35,8 @@ force: true changed_when: false with_filetree: './compose' + loop_control: + label: '{{ item.path }}' when: item.state == 'file' and item.path not in render_blacklist delegate_to: localhost