ansible.cfg 400 B

123456789101112131415161718
  1. [defaults]
  2. inventory = inventory/hosts.yml
  3. host_key_checking = False
  4. retry_files_enabled = False
  5. gathering = smart
  6. fact_caching = jsonfile
  7. fact_caching_connection = /tmp/ansible_facts_cache
  8. fact_caching_timeout = 3600
  9. [privilege_escalation]
  10. become = True
  11. become_method = sudo
  12. become_user = root
  13. become_ask_pass = False
  14. [ssh_connection]
  15. pipelining = True
  16. control_path = /tmp/ansible-ssh-%%h-%%p-%%r