Added ansible role

This commit is contained in:
Guy Van Sanden 2025-02-12 14:21:43 +01:00
parent 90d50084a7
commit 040bd08503
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,3 @@
---
tellme_url: https://
tellme_webhook: 123

View File

@ -0,0 +1,11 @@
---
- name: Send a tellme notification
uri:
url: "{{ tellme_url }}/webhook/{{ tellme_webhook }}"
method: POST
body:
message: "EPS Ansible run completed"
body_format: json
delegate_to: mon01
run_once: true
ignore_errors: yes