ordinov/Execute AWS SSM Command
Send a command to an EC2 instance using AWS SSM and wait for its completion.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stalelast commit Aug 22, 2024
- License
- MIT
Pinned Snippet
uses: ordinov/aws-ssm-send-command-await@ad3845a4ffc6a1e993b2dc4ef67c86d6498a54b9 # no releases — HEAD as of 2026-07-11tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| aws-region | The AWS region where the EC2 instance is located (e.g., us-east-1). | yes | — |
| aws-access-key-id | AWS Access Key ID for authentication. | yes | — |
| aws-secret-access-key | AWS Secret Access Key for authentication. | yes | — |
| instance-tag-name | The tag name of the EC2 instance (e.g., 'MyInstance'). Only required if instance-id is not provided. | no | — |
| instance-id | The EC2 instance ID (e.g., 'i-0abcd1234efgh5678'). Only required if instance-tag-name is not provided. | no | — |
| command | The shell command to execute on the EC2 instance (e.g., 'uptime'). | yes | — |
Outputs
| name | description |
|---|---|
| command-output | The output from the executed command. |
| command-error | The error output from the executed command (if any). |