From 143c96074ed66636207456c0993654dd4b84cca4 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 1 Feb 2025 17:21:59 -0600 Subject: [PATCH] callbacks: Enable ARA [ARA Records Ansible][0] is a web-based reporting tool for Ansible. It consists of a callback plugin that submits task/playbook results to an HTTP API and a browser GUI to display them. [0]: https://ara.recordsansible.org/ --- ansible.cfg | 4 ++++ plugins/callback/ara_default.py | 1 + 2 files changed, 5 insertions(+) create mode 100644 plugins/callback/ara_default.py diff --git a/ansible.cfg b/ansible.cfg index 085bb72..4aa9bc9 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -15,3 +15,7 @@ remote_tmp = /var/tmp [callback_ntfy] server = https://ntfy.pyrocufflink.blue + +[ara] +api_client = http +api_server = https://ara.ansible.pyrocufflink.blue diff --git a/plugins/callback/ara_default.py b/plugins/callback/ara_default.py new file mode 100644 index 0000000..4ec9148 --- /dev/null +++ b/plugins/callback/ara_default.py @@ -0,0 +1 @@ +from ara.plugins.callback.ara_default import *