chore: Add gitignore for secrets/clients to prevent plaintext files

- Only allow .sops.yaml encrypted files
- Block all plaintext, temp, and backup files
- Prevents accidental commits of unencrypted secrets

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Pieter 2026-01-08 17:01:15 +01:00
parent b231ebec21
commit 5e46cf9cc4

13
secrets/clients/.gitignore vendored Normal file
View file

@ -0,0 +1,13 @@
# Only allow SOPS-encrypted files in version control
# Block all plaintext/temp secret files
# Allow only .sops.yaml files
*.yaml
!*.sops.yaml
# Block temporary files
*_temp.yaml
*_plaintext.yaml
*-temp.yaml
*.tmp
*.backup