Commit 4b59a85d by Jason Bau

Merge pull request #336 from edx/fix/jbau/parameterize-s3-upload-bucket-name

Parameterize aws s3 bucket name for forum uploads
parents 786f422f 7bc52394
......@@ -193,7 +193,7 @@ SECRET_KEY = AUTH_TOKENS['SECRET_KEY']
AWS_ACCESS_KEY_ID = AUTH_TOKENS["AWS_ACCESS_KEY_ID"]
AWS_SECRET_ACCESS_KEY = AUTH_TOKENS["AWS_SECRET_ACCESS_KEY"]
AWS_STORAGE_BUCKET_NAME = 'edxuploads'
AWS_STORAGE_BUCKET_NAME = AUTH_TOKENS.get('AWS_STORAGE_BUCKET_NAME','edxuploads')
DATABASES = AUTH_TOKENS['DATABASES']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment