notify-discord.yaml 334 B

1234567891011121314
  1. ---
  2. - name: notify discord
  3. hosts: "{{ hosts }}"
  4. tasks:
  5. - name: send discord message
  6. uri:
  7. url: "your-webhook"
  8. method: POST
  9. body_format: json
  10. body: '{"content": "your-message"}'
  11. headers:
  12. Content-Type: application/json
  13. status_code: 204
  14. # when: your-condition