Files
tellme/Ansible/tellme_notification/tasks/main.yml
2026-04-23 12:10:05 +02:00

12 lines
253 B
YAML

---
- name: Send a tellme notification
uri:
url: "{{ tellme_url }}/webhook/{{ tellme_webhook }}"
method: POST
body:
AppName: "TellMe"
message: "Ansible run completed"
body_format: json
run_once: true
ignore_errors: yes