10 lines
232 B
YAML
10 lines
232 B
YAML
---
|
|
- name: Send notification message via Slack
|
|
delegate_to: localhost
|
|
community.general.slack:
|
|
token: "{{ slack_token }}"
|
|
msg: Task failed on {{ inventory_hostname }}
|
|
|
|
- name: Fail
|
|
ansible.builtin.command: /bin/false
|