43 lines
476 B
Plaintext
43 lines
476 B
Plaintext
# Ansible
|
|
*.retry
|
|
.vault_pass*
|
|
/tmp/
|
|
.ansible/
|
|
|
|
# Generated inventory (regenerate with setup.sh)
|
|
inventory/hosts.yml
|
|
inventory/group_vars/all/vars.yml
|
|
|
|
# Keep vault.yml encrypted (DO NOT ignore it - it should be committed encrypted)
|
|
# inventory/group_vars/all/vault.yml
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|