Skip to content

Commit 4103daf

Browse files
committed
updated the environment variables in the code
1 parent b772d19 commit 4103daf

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

frontend/import_dev.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
from datetime import datetime, timedelta, timezone
44

55
# Dell ECS credentials and endpoint from environment variables
6-
DELL_ECS_ACCESS_KEY = os.getenv('S3_ACCESS_KEY_ID_DEV')
7-
DELL_ECS_SECRET_KEY = os.getenv('S3_SECRET_ACCESS_KEY_DEV')
6+
7+
8+
9+
DELL_ECS_ACCESS_KEY = os.getenv('S3_ACCESS_KEY_ID')
10+
DELL_ECS_SECRET_KEY = os.getenv('S3_SECRET_ACCESS_KEY')
811
DELL_ECS_ENDPOINT = os.getenv('S3_ENDPOINT')
9-
BUCKET_NAME = os.getenv('S3_BUCKET_DEV')
12+
BUCKET_NAME = os.getenv('S3_BUCKET')
1013

1114
# Optional: restrict to a folder/prefix
1215
PREFIX = ''

0 commit comments

Comments
 (0)