---
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 \
```