christianlempa-boilerplates/ansible/notification/notify-discord.yaml

15 lines
334 B
YAML
Raw Normal View History

2023-05-25 13:48:38 +02:00
---
- name: notify discord
hosts: "{{ hosts }}"
tasks:
- name: send discord message
uri:
url: "your-webhook"
method: POST
body_format: json
body: '{"content": "your-message"}'
headers:
Content-Type: application/json
status_code: 204
# when: your-condition