You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible-homelab/roles/gotify_message/tasks/main.yml

11 lines
246 B
YAML

---
- name: Create a gotify message.
ansible.builtin.uri:
url: "{{ gotify_base_url }}/message"
method: POST
headers:
X-Gotify-Key: "{{ gotify_api_token }}"
body_format: json
body:
message: "{{ gotify_message }}"