-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'improvement/CLDSRV-554/tests' into q/7.70
- Loading branch information
Showing
6 changed files
with
98 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
const memCredentials = require('../../lib/json/mem_credentials.json'); | ||
|
||
if (!memCredentials || Object.is(memCredentials, {})) { | ||
throw new Error('Credential info is missing in mem_credentials.json'); | ||
} | ||
|
||
function getCredentials(profile = 'default') { | ||
const credentials = memCredentials[profile] || memCredentials.default; | ||
|
||
const accessKeyId = credentials.accessKey; | ||
const secretAccessKey = credentials.secretKey; | ||
|
||
return { | ||
accessKeyId, | ||
secretAccessKey, | ||
}; | ||
} | ||
|
||
module.exports = { | ||
getCredentials, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters