Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions agentic_core/local_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Users stored in DynamoDB config table. Passwords hashed with bcrypt.
"""
import json
import logging
import time
import hashlib
import hmac
Expand All @@ -12,6 +13,8 @@

from config import CONFIG_TABLE, REGION

logger = logging.getLogger(__name__)

_JWT_SECRET = os.environ.get("AGENTIC_AUTO_JWT_SECRET", "agentic-data-default-secret-change-me")
_ADMIN_PASSWORD = os.environ.get("AGENTIC_AUTO_ADMIN_PASSWORD", "") # Must be set via env var at deploy time

Expand Down