ansible.cfg 496 B

12345678910111213141516171819
  1. [defaults]
  2. inventory = inventory/
  3. roles_path = roles
  4. collections_path = ~/.ansible/collections
  5. remote_user = admin
  6. host_key_checking = False
  7. retry_files_enabled = False
  8. stdout_callback = default
  9. result_format = yaml
  10. callbacks_enabled = profile_tasks
  11. [privilege_escalation]
  12. become = True
  13. become_method = sudo
  14. become_user = root
  15. [ssh_connection]
  16. pipelining = True
  17. ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no