--- - name: "Send mattermost message" uri: url: "{{ mattermost_hook_smardigo }}" method: POST body: "{{ lookup('template','mattermost-deploy-start.json.j2') }}" body_format: json headers: Content-Type: "application/json" delegate_to: 127.0.0.1 become: false when: - send_status_messages # TODO: Message Refactor :') - name: "Copy file to remote locations {{ upload_directory }}/{{ upload_file | basename }}" copy: src: "{{ upload_file }}" dest: "{{ upload_directory }}/{{ upload_file | basename }}" mode: 0644 - name: "Send mattermost message" uri: url: "{{ mattermost_hook_smardigo }}" method: POST body: "{{ lookup('template','mattermost-deploy-end.json.j2') }}" body_format: json headers: Content-Type: "application/json" delegate_to: 127.0.0.1 become: false when: - send_status_messages # TODO: Message Refactor :')