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
posta 4 anni fa2459 visualizzazioni
4 Risposte
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

con risposta 4 anni fa
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
con risposta 4 anni fa
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.

con risposta 4 anni fa
0

That's exactly what I needed. Thank you.

kidbrax
con risposta 4 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande