67 lines
788 B
Plaintext
67 lines
788 B
Plaintext
# Ansible
|
|
*.retry
|
|
*.pyc
|
|
.ansible/
|
|
.ansible_async/
|
|
*.log
|
|
|
|
# Vault & secrets
|
|
vault-password
|
|
.vault-pass
|
|
*vault*.yml
|
|
!group_vars/*/vault.yml
|
|
!host_vars/*/vault.yml
|
|
.vault_pass.txt
|
|
secrets/
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# Roles installed via ansible-galaxy
|
|
roles/external/
|
|
roles/.galaxy/
|
|
collections/ansible_collections/
|
|
|
|
# Inventory & host files (often have sensitive data)
|
|
inventory/hosts.local
|
|
inventory/local
|
|
hosts.local
|
|
|
|
# Environment & local config
|
|
.env
|
|
.env.local
|
|
*.local.yml
|
|
|
|
# Python (Ansible runs on Python)
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
.python-version
|
|
|
|
# uv/Poetry artifacts
|
|
uv.lock
|
|
pyproject.toml.bak
|
|
|
|
# OS junk
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Test artifacts
|
|
.molecule/
|
|
molecule/*/.molecule/
|
|
.pytest_cache/
|
|
|
|
# Output
|
|
*.tar.gz
|
|
*.zip
|
|
output/
|
|
build/
|
|
dist/ |