Merge pull request #1 from MSR97/feature/expand-s3fs-with-aws-session-token-support

feat: add support for AWS session token in S3 configuration
This commit is contained in:
Mohammad 2025-09-10 14:17:09 +02:00 committed by GitHub
commit 147d2a2e49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,6 +11,7 @@ class S3Config(BaseSettings):
aws_session_token: Optional[str] = None
model_config = SettingsConfigDict(env_file=".env", extra="allow")
@lru_cache
def get_s3_config():
return S3Config()