Add phase 5 secure credential vault

This commit is contained in:
A R R R Associates
2026-07-23 14:44:02 +05:30
parent d113db0d20
commit 1b9f555dcf
16 changed files with 442 additions and 0 deletions
+2
View File
@@ -14,6 +14,8 @@ class Settings(BaseSettings):
ENV: str = "dev"
DEBUG: bool = True
SECRET_KEY: str = "change-me-to-a-long-random-string"
# Separate high-entropy key for tenant-scoped credential encryption. Never rotate without a re-encryption plan.
VAULT_MASTER_KEY: str = ""
COOKIE_SECURE: bool = False
COOKIE_SAMESITE: str = "lax"