In the Ansible-Runner Input Directory Hierarchy where do the `ansible.cfg` configurations go?

I am transitioning my project to have the Ansible Runner’s Input Directory Hierarchy structure.

I currently have the following ansible.cfg

stdout_callback = yaml
host_key_checking = False

I cannot find any documentation where this information needs to be placed in the the Input Directory Hierarchy Structure for my project.

I wish to see my ansible-runner STDOUT logs in the YAML format but I am seeing them in the JSON format at the moment.

Okay the solution is to add them either as YAML or JSON in the env/envvars file.

For my configuration the following upon comparing with the Ansible Configuration Settings Docs

---
# env/envvars
ANSIBLE_STDOUT_CALLBACK: yaml
ANSIBLE_HOST_KEY_CHECKING: false

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.