Add ansible.cfg (roles_path, inventory, become, fact caching), requirements.yml placeholder for future collections, .gitignore for Ansible artifacts, and .ansible-lint config for code quality. 🤖 Generated with [Crush](https://github.com/charmassociates/crush) Assisted-by: GLM-5 via Crush <crush@charm.land>
18 lines
476 B
INI
18 lines
476 B
INI
[defaults]
|
|
# Where AWX/ansible looks for roles when not installed as collections.
|
|
roles_path = ./roles
|
|
inventory = ./inventory/hosts.yml
|
|
host_key_checking = False
|
|
# Use the default configured Python interpreter on each host.
|
|
interpreter_python = auto_silent
|
|
# Make output readable.
|
|
stdout_callback = yaml
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = ./.fact_cache
|
|
fact_caching_timeout = 86400
|
|
|
|
[privilege_escalation]
|
|
become = True
|
|
become_method = sudo
|