fix(CLI): Recognize --aws-profile option by schema

This commit is contained in:
Mariusz Nowak 2021-04-19 15:46:40 +02:00 committed by Mariusz Nowak
parent 0f30125189
commit 014ff949b7
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,9 @@ module.exports = {
usage: 'Region of the service',
shortcut: 'r',
},
'aws-profile': {
usage: 'AWS profile to use with the command',
},
'app': { usage: 'Dashboard app' },
'org': { usage: 'Dashboard org' },
'use-local-credentials': {

View File

@ -49,6 +49,7 @@ describe('test/unit/lib/cli/filter-supported-options.test.js', () => {
)
).to.deep.equal({
'region': 'elo',
'aws-profile': null,
'help': null,
'version': null,
'config': null,