Skip to content

Commit

Permalink
feat: add AWS_REGION as env in settings.py.prod
Browse files Browse the repository at this point in the history
  • Loading branch information
paulobernardoaf committed Jan 28, 2025
1 parent d0951ad commit 28315b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions temba/settings.py.prod
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ AWS_BUCKET_DOMAIN = env("AWS_BUCKET_DOMAIN", default=f"{AWS_STORAGE_BUCKET_NAME}
AWS_S3_SIGNATURE_VERSION = "s3v4"
STORAGE_URL = f"https://{AWS_BUCKET_DOMAIN}"

AWS_REGION = env("AWS_REGION", default="eu-west-1")
AWS_S3_REGION_NAME = AWS_REGION

STORAGES = {
# default storage for things like exports, imports
"default": {
Expand Down

0 comments on commit 28315b1

Please sign in to comment.