Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
- SECURITY.md: Overordnet visjon med lenker til alle manifestfiler - SECURITY_AUDITS.md: Historikk og To-Do liste - RUNBOOK.md: 6 operasjonelle scenarier (ukjent bruker, eksponert secret, 401/403, 50x, VPC-SC, BinAuthz) - INCIDENT_RESPONSE.md: PICERL-modell med eskaleringsmatrise - SECRET_MANAGEMENT.md: Policy + lokal utvikling - ACCESS_CONTROL.md: IAM-policy med service account-oversikt - COMPLIANCE.md: TYR, Binary Auth, KMS-attestasjon Opprydding: - Slettet sensitive filer (test_secret.txt, final-secret-test.txt, tyr/certs/ca_password.txt) - Slettet engangsskript og midlertidige filer - Oppdatert .gitignore med *.txt
63 lines
658 B
Plaintext
63 lines
658 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
|
|
# Credentials — NEVER commit these
|
|
*.json
|
|
credentials/
|
|
*.key
|
|
*.pem
|
|
service_account*.json
|
|
application_default_credentials.json
|
|
|
|
# GCP / ADK
|
|
.gcloud/
|
|
adk_sessions/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temp
|
|
/tmp/
|
|
*.log
|
|
*.txt
|
|
.env.prefilled
|
|
|
|
# Terraform
|
|
.terraform/
|
|
tfplan.txt
|
|
infrastructure/terraform/tfplan
|
|
**/tfplan
|
|
!infrastructure/terraform/customers/**/*.tfvars
|
|
|
|
# Local databases
|
|
emma/data/morphic.db
|
|
|
|
|
|
tyr/certs/ca_password.txt
|
|
|
|
# Ignored virtual environments
|
|
.venv-flake8/
|
|
opax-mcp/tmp_venv/
|
|
|