You have three options to set these values as part of your CI pipeline:
- Use the
uipath config setcommand to set the values permanently in the configuration file which is applied to all following calls:
uipath config set --key "organization" --value "<your-org>"
uipath config set --key "tenant" --value "<your-tenant>"
uipath config set --key "uri" --value "https://<your-automation-suite-server>"
- Use environment variables which also supports credentials like client id, client secret, personal access tokens, etc.:
UIPATH_CLIENT_ID="<your-client-id>"
UIPATH_CLIENT_SECRET="<your-client-secret>"
UIPATH_ORGANIZATION="<your-org>"
UIPATH_UIPATH_TENANT="<your-tenant>"
UIPATH_URI="https://<your-automation-suite-server>"
- Use command line arguments to set the values on each individual call:
uipath orchestrator users get --organization "<your-org>" \
--tenant "<your-tenant>" \
--uri "https://<your-automation-suite-server>"
All supported options are documented here.