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
已提問 4 年前檢視次數 2459 次
4 個答案
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

已回答 4 年前
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
已回答 4 年前
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.

已回答 4 年前
0

That's exactly what I needed. Thank you.

kidbrax
已回答 4 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南