"""Configuration for Auth0 client.""" from pydantic_settings import BaseSettings class Auth0Config(BaseSettings): """Configuration for Auth0 client.""" auth0_tenants: str = ( 'dev-delphi,dev-orchard,prod-delphi,prod-dna-apps,' 'prod-orch-youtube,qa-orch-youtube,qa-orchard,' 'sme-develop,sme-dna,sme-qa,workstation' ) @property def tenant_list(self) -> list[str]: """List of Auth0 tenant names to search.""" return [t.strip() for t in self.auth0_tenants.split(',')]