12345678910111213141516171819202122232425262728293031 |
- from typing import Optional
- from pydantic import Field
- from pydantic_settings import BaseSettings
- class AzureBlobStorageConfig(BaseSettings):
- """
- Azure Blob storage configs
- """
- AZURE_BLOB_ACCOUNT_NAME: Optional[str] = Field(
- description="Azure Blob account name",
- default=None,
- )
- AZURE_BLOB_ACCOUNT_KEY: Optional[str] = Field(
- description="Azure Blob account key",
- default=None,
- )
- AZURE_BLOB_CONTAINER_NAME: Optional[str] = Field(
- description="Azure Blob container name",
- default=None,
- )
- AZURE_BLOB_ACCOUNT_URL: Optional[str] = Field(
- description="Azure Blob account URL",
- default=None,
- )
|