File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- CLI: completely new ` mc iam ` command with support for user, roles, and user groups management
6
6
- SDK: Tenant Management added paging to the Tenant Management Client
7
+ - mc dev-proxy reads now --passkey from MDSP_PASSKEY variable like other commands [ #301 ]
7
8
- fixed paging issue for ` mc iam --group ` command [ #297 ]
8
9
- Bumped all dependencies
9
10
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ export default (program: Command) => {
56
56
homeDirLog ( options . verbose , color ) ;
57
57
proxyLog ( options . verbose , color ) ;
58
58
59
+ if ( options . mode === "credentials" ) {
60
+ options . passkey = options . passkey || process . env . MDSP_PASSKEY ;
61
+ }
62
+
59
63
if ( options . mode === "session" ) {
60
64
options . session = options . session || process . env . MDSP_SESSION ;
61
65
options . xsrftoken = options . xsrftoken || process . env . MDSP_XSRF_TOKEN ;
You can’t perform that action at this time.
0 commit comments