Auto start an EC2 instance 5 minutes after it auto shuts due to an alarm

0

An alarm has been set on our EC2 instance to auto shut if "idle" for a certain time period (based on CPU utilization). Is there a way to auto start the instance, say 5 minutes after it auto shuts due to the alarm?

4 Answers
0

It would probably be a better idea to just exclude the instance from the alarm to begin with. You can also shut off the alarm. Unless the idle CPU is an indication of a system problem in that case you may want to handle that a different way. Ex: Auto scaling group with health check.

Evan
answered a year ago
0

You can build a solution using DynamoDB and lambda.Log all the instanceid's,state and shutdowntime and trigger the lambda to take action as needed. Note : Also consider shutting down the services running inside the EC2 gracefully to avoid data inconsistency and corruption.

answered a year ago
0

Thank you @rePost-User-6379467 and @Evan for your replies

UserAB
answered a year ago
0

Assuming this is really what you need, you can set an EventBridge rule that will catch the instance terminated events. This event can create an EventBridge schedule for 5 minutes from now that will start the instance.

profile pictureAWS
EXPERT
Uri
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions