Blocks .env, *.key, *.pem, id_rsa*, secrets.*, credentials.json, etc. Preventive — no exposure found; future commits can't accidentally leak these. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
57 lines
677 B
Plaintext
57 lines
677 B
Plaintext
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Credentials (never commit)
|
|
*.cred
|
|
*credential*
|
|
*.pfx
|
|
*.cer
|
|
|
|
# CSV data files (generated)
|
|
applications.csv
|
|
|
|
# Inventory data (contains CUI / employee SSO / MAC addresses)
|
|
inventory.csv
|
|
inventory.xlsx
|
|
|
|
# Per-host log files written by remote-execution scripts
|
|
logs_*.txt
|
|
|
|
# Text files with hostnames/IPs (sensitive)
|
|
computers.txt
|
|
shopfloor-pcs.txt
|
|
|
|
# Windows thumbnails
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
|
|
# Secrets and credentials (defensive)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.*.example
|
|
*.pem
|
|
*.key
|
|
id_rsa
|
|
id_rsa.*
|
|
*.ppk
|
|
*.p12
|
|
*.pfx
|
|
secrets.json
|
|
secrets.yaml
|
|
secrets.yml
|
|
*_secret
|
|
*_secrets
|
|
credentials.json
|