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.
|
---
|
|
- 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 }}"
|