- Add .gitignore for Ansible project (Python, temp files, secrets) - Add ansible.cfg with optimized settings - Enable SSH pipelining for performance - Configure fact caching with jsonfile backend - Set roles_path and inventory defaults
39 lines
348 B
Plaintext
39 lines
348 B
Plaintext
# Ansible
|
|
*.retry
|
|
*.log
|
|
.vault_pass
|
|
.vault_password
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
ENV/
|
|
|
|
# Temporary files
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Ansible fact cache
|
|
/tmp/ansible_fact_cache/
|
|
|
|
# Sensitive data
|
|
vault.yml
|
|
secrets.yml
|
|
credentials.yml
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# Test artifacts
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|