mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
[misc] test/acceptance: do not hard code fake credentials
This commit is contained in:
parent
847f124d7b
commit
516102e6fb
1 changed files with 2 additions and 2 deletions
|
@ -415,8 +415,8 @@ describe('Filestore', function() {
|
|||
|
||||
const s3ClientSettings = {
|
||||
credentials: {
|
||||
accessKeyId: 'fake',
|
||||
secretAccessKey: 'fake'
|
||||
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
|
||||
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY
|
||||
},
|
||||
endpoint: process.env.AWS_S3_ENDPOINT,
|
||||
sslEnabled: false,
|
||||
|
|
Loading…
Reference in a new issue