summaryrefslogtreecommitdiff
path: root/Ansible ad-hoc commands.md
diff options
context:
space:
mode:
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