fix loop labels
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-05-17 22:41:32 +02:00
parent 746d911a3d
commit 313dbcdac0
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
state: "{{ item.state | default('present') }}" state: "{{ item.state | default('present') }}"
loop: "{{ hcloud_server_volumes }}" loop: "{{ hcloud_server_volumes }}"
loop_control: loop_control:
label: "{{ item.name }}" label: "{{ hcloud_server.name }}:{{ item.name }}"
delegate_to: localhost delegate_to: localhost
- name: Create reverse DNS entries - name: Create reverse DNS entries
@ -50,5 +50,5 @@
state: "{{ item.state | default('present') }}" state: "{{ item.state | default('present') }}"
loop: "{{ hcloud_server_rdns }}" loop: "{{ hcloud_server_rdns }}"
loop_control: loop_control:
label: "{{ item.name }}" label: "{{ hcloud_server.name }}:{{ item.ptr }}"
delegate_to: localhost delegate_to: localhost