(summary) configurable s3 region

When using other S3 providers than minio,
We neeed to configure the region
This commit is contained in:
Florent Chehab
2026-08-20 12:41:48 +02:00
parent 87dbd8069d
commit 8b22059b18
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -11,6 +11,7 @@ and this project adheres to
### Changed
- ✨(backend) accept form-urlencoded on the user token endpoint
- ✨(summary) configurable s3 region
- ⬆️(frontend) upgrade i18next and react-i18next patch versions
- ⬆️(frontend) upgrade posthog-js from 1.395.0 to 1.404.1
- ⬆️(frontend) upgrade livekit-client and @livekit/components-react
+1
View File
@@ -83,6 +83,7 @@ class Settings(BaseSettings):
aws_s3_access_key_id: str
aws_s3_secret_access_key: SecretStr
aws_s3_secure_access: bool = True
aws_S3_region_name: str | None = None
aws_transcript_path: str = "transcripts"
aws_summary_path: str = "summaries"
+1
View File
@@ -282,6 +282,7 @@ class FileService:
access_key=settings.aws_s3_access_key_id,
secret_key=settings.aws_s3_secret_access_key.get_secret_value(),
secure=settings.aws_s3_secure_access,
region=settings.aws_S3_region_name,
)
self._bucket_name = settings.aws_storage_bucket_name