Files
tellme/Ansible/tellme_notification/tasks/main.yml

12 lines
253 B
YAML
Raw Normal View History

2025-02-12 14:21:43 +01:00
---
- name: Send a tellme notification
uri:
url: "{{ tellme_url }}/webhook/{{ tellme_webhook }}"
method: POST
body:
2026-04-23 12:10:05 +02:00
AppName: "TellMe"
message: "Ansible run completed"
2025-02-12 14:21:43 +01:00
body_format: json
run_once: true
ignore_errors: yes