Hello, let's say I have the following resource.json file:
"madmartigan.local": {
"tags": "mycity,server",
"winrm-port": 5985,
"winrm-authtype": "ntlm",
"osFamily": "windows",
"username": "greg",
"winrm-password-storage-path": "keys/project/SLN-Tasks/admPw",
"osVersion": "10.10.3",
"winrm-shell": "powershell",
"hostname": "madmartigan.local",
"nodename": "madmartigan.local",
"osName": "Mac OS X"
}
is it possible to have the username encrypted the same way the password is? Like:
"username": "keys/project/SLN-Tasks/admSrv",
I've tried but it does not work. It only works with username in clear text. Is it by design?
Many thanks