16 lines
313 B
Python
16 lines
313 B
Python
"""
|
|
Configurations for the auth module
|
|
|
|
Exports:
|
|
- auth_settings: Contains OIDC information
|
|
"""
|
|
from src.config import CustomBaseSettings
|
|
|
|
class AuthConfig(CustomBaseSettings):
|
|
OIDC_CONFIG: str = ""
|
|
OIDC_ISSUER: str = ""
|
|
OIDC_AUDIENCE: str = ""
|
|
CLIENT_ID: str = ""
|
|
|
|
|
|
auth_settings = AuthConfig()
|