summaryrefslogtreecommitdiff
path: root/Ansible ad-hoc commands.md
diff options
context:
space:
mode:
authorJasper Ras <jras@hostnet.nl>2025-04-25 16:15:25 +0200
committerJasper Ras <jras@hostnet.nl>2025-04-25 16:15:25 +0200
commitc9a730e5b363a10639309c81dab838232ee434b6 (patch)
tree56463ab88aae11ede76b21a9ac20376606d72f8f /Ansible ad-hoc commands.md
parentab409a3701bf59dd73dc1e0324376bdac8b6d74f (diff)
vault backup: 2025-04-25 16:15:25
Diffstat (limited to 'Ansible ad-hoc commands.md')
-rw-r--r--Ansible ad-hoc commands.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/Ansible ad-hoc commands.md b/Ansible ad-hoc commands.md
new file mode 100644
index 0000000..38c4286
--- /dev/null
+++ b/Ansible ad-hoc commands.md
@@ -0,0 +1,16 @@
+---
+tags:
+ - ansible
+---
+Configure ansible.cfg with:\
+```
+stdout_callback=json
+bin_ansible_callbacks = True
+```
+Outputs result as json, so we can jq it
+
+Can also be done with env var:
+```
+ANSIBLE_LOAD_CALLBACK_PLUGINS=1 \
+ANSIBLE_STDOUT_CALLBACK=json \
+``` \ No newline at end of file