2026-04-06 12:41:49 +01:00
|
|
|
"""
|
2026-05-28 11:10:55 +01:00
|
|
|
Configurations for the auth module
|
2026-04-06 12:41:49 +01:00
|
|
|
|
2026-05-28 11:10:55 +01:00
|
|
|
Exports:
|
|
|
|
|
- auth_settings: Contains OIDC information
|
2026-04-06 12:41:49 +01:00
|
|
|
"""
|
|
|
|
|
from src.config import CustomBaseSettings
|
|
|
|
|
|
|
|
|
|
class AuthConfig(CustomBaseSettings):
|
|
|
|
|
OIDC_CONFIG: str = ""
|
|
|
|
|
OIDC_ISSUER: str = ""
|
|
|
|
|
OIDC_AUDIENCE: str = ""
|
|
|
|
|
CLIENT_ID: str = ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auth_settings = AuthConfig()
|