Did you know you can just send a command and receive its output with ssh?
ssh azureuser@192.168.1.1 'uptime'
you can also script for multiple commands do:
ssh azureuser@192.168.1.1 << EOF
COMMAND1
COMMAND2
COMMAND3
EOF
so simple right? it also supports running a script.
ssh azureuser@192.168.1.1 'bash -s' < myscript.sh
Use this now to your deployment or automation tasks!