Code:
- task: SSH@0
displayName: 'Run shell inline on remote machine'
inputs:
**sshEndpoint: username@server.com**
runOptions: inline
inline: |
cd /
/usr/documents/mql
push context user random pass random;
print context;
I am having issues trying to figure out how to add the password and port to the sshEndpoint input.. there's no documentation on syntax that I'm able to find!If you have tips on where to find these documentations pls lmk

