--- - name: Create maps dir for HAProxy file: path: "{{ haproxy_maps_path }}" state: directory - name: Write maps for HAProxy copy: dest: "{{ haproxy_maps_path }}/{{ item.key }}" content: "{{ item.value }}" loop: "{{ haproxy_map | dict2items }}" notify: - Reload HAProxy