- Add brand default recovery flow configuration to Authentik setup
- Update create_recovery_flow.py to set brand's recovery flow automatically
- All 17 servers now have brand recovery flow configured
Security improvements:
- Remove secrets/clients/*.sops.yaml from git tracking
- Remove ansible/host_vars/ from git tracking
- Update .gitignore to exclude sensitive config files
- Files remain encrypted and local, just not in repo
Note: Files still exist in git history. Consider using BFG Repo Cleaner
to remove them completely if needed.
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
74 lines
993 B
Text
74 lines
993 B
Text
# Secrets - NEVER commit plaintext, only encrypted .sops.yaml files
|
|
secrets/**/*.yaml
|
|
secrets/**/*.yml
|
|
!secrets/**/*.sops.yaml
|
|
!secrets/.sops.yaml
|
|
secrets/clients/*.sops.yaml
|
|
keys/age-key.txt
|
|
keys/ssh/
|
|
*.key
|
|
*.pem
|
|
|
|
# OpenTofu/Terraform state and variables
|
|
tofu/.terraform/
|
|
tofu/.terraform.lock.hcl
|
|
tofu/terraform.tfstate
|
|
tofu/terraform.tfstate.backup
|
|
tofu/terraform.tfstate.*.backup
|
|
tofu/*.tfvars
|
|
!tofu/terraform.tfvars.example
|
|
tofu/*.tfplan
|
|
tofu/tfplan
|
|
|
|
# Ansible
|
|
ansible/*.retry
|
|
ansible/.vault_pass
|
|
ansible/host_vars/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Python (if using scripts)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Test/debug scripts with secrets
|
|
scripts/*-test*.py
|
|
scripts/test-*.py
|
|
**/test-oidc-provider.py
|
|
|
|
# Documentation/reports (except README.md)
|
|
*.md
|
|
!README.md
|
|
docs/
|