Can you use session manager to send a single command and return the output?

0

When using SSH, you can connect to an instance, run a command and disconnect with one command. Such as

ssh user@host.com 'ls -l'

Is this possible with Session Manager? And furthermore, can it be done against a Windows target?

kidbrax
demandé il y a 4 ans2459 vues
4 réponses
0

Thanks for reaching out! Yes, Session Manager can be used to run a single interactive command against Windows targets. You can either use Session Manager public document "AWS-StartInteractiveCommand" or create a custom document to run restricted commands. Please refer to the example provided in below documentation and let us know in case of further queries.

https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-restrict-command-access.html

répondu il y a 4 ans
0

Thanks, I didn't know that. But I was actually talking about being able to issue a single command that connects to the remote instance and then executes given command on the instance then disconnects. As opposed to issuing the command to start the session and then issuing the given command after being connected.

I was not referring to restricting the user to a single command.

kidbrax
répondu il y a 4 ans
0

Thanks for sharing more details! Interactive Command scenario of Session Manager can be used to run a single or a set of predefined commands and it works by establishing a connection which is disconnected once commands are executed.

Below is a sample StartSession request that would execute the command "echo HelloWorld", display the output and disconnect. Here the command to be executed is passed along with the StartSession request.
aws ssm start-session --target <TARGET_ID> --document-name AWS-StartInteractiveCommand --parameters command="echo HelloWorld"

Another alternative would be to create a custom InteractiveCommands type session document with pre defined commands within the document. Below documentation can be referred for the sample custom document scenario:
https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-restrict-command-access.html

Please let us know in case of further queries.

répondu il y a 4 ans
0

That's exactly what I needed. Thank you.

kidbrax
répondu il y a 4 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions