16 lines
334 B
Python
16 lines
334 B
Python
"""
|
|
Configurations for auth module
|
|
|
|
Exports:
|
|
- auth_settings: Configs for auth loaded from environment variables
|
|
"""
|
|
from src.config import CustomBaseSettings
|
|
|
|
class AuthConfig(CustomBaseSettings):
|
|
OIDC_CONFIG: str = ""
|
|
OIDC_ISSUER: str = ""
|
|
OIDC_AUDIENCE: str = ""
|
|
CLIENT_ID: str = ""
|
|
|
|
|
|
auth_settings = AuthConfig()
|