AWS SSM Run command Output

737 Views Asked by At

How can we send the logs of an SSM document execution via Run command when the SSM DOCUMENT is executed through the Eventbridge rule schedule?

For ex; Running a simple Hello world script in linux and need the run command output for it

1

There are 1 best solutions below

1
On

There is no log configuration in the EventBridge rule for any target type.

The logging will be configured on the Target, e.g. Lambda function. EventBridge will have an entry in CloudTrail but that doesn't provide any information about the output of the command executed.

Running a simple Hello world script in linux and need the run command output for it

I tested this. There should be an entry in Systems Manager Run Command console with the Command-ID. Then you can use aws cli to check the command invocation details.

aws ssm get-command-invocation --command-id {command-id} --instance-id {instance-id}

{
   ...
   "StandardOutputContent": "Hello world!\n",
   ...
}

If you are using Run Command to execute a script, you can also upload the script output to CloudWatch logs or S3 bucket as part of the script.