[AAE-9169] adf-cli - Change the doc and add clientId input (#7730)

* Change the doc and add input

* fix mistake
This commit is contained in:
Maurizio Vitale
2022-07-28 14:02:43 +02:00
committed by GitHub
parent 4c249c8106
commit 46420ea0b2
6 changed files with 13 additions and 8 deletions

View File

@@ -26,6 +26,7 @@ async function main() {
program
.version('0.1.0')
.option('--host [type]', 'Remote environment host')
.option('--clientId [type]', 'sso client', 'alfresco')
.option('-p, --password [type]', 'password ')
.option('-u, --username [type]', 'username ')
.option('--license [type]', 'APS license S3 path ')
@@ -119,7 +120,7 @@ async function checkEnv() {
authType: 'OAUTH',
oauth2: {
host: `${program.host}/auth/realms/alfresco`,
clientId: 'alfresco',
clientId: `${program.clientId}`,
scope: 'openid'
}
});