How to trigger to create a new EC2 instance by event by using CDK?

0

Hello there, I am writing a AWS CDK app with typescript. When DynamoDB insert data trigger to create a new EC2 instance, with running some script saved on S3 bucket, and then terminate the instance. Now I managed to create a SQS queue, and after data insert into DynamoDB will have a message in this queue by DynamoDB stream feature. I can not figure out how to trigger to create a new EC2 instance? If use Lambda function, how to achive downloading script and running process?

Thanks for help!

Jacob
已提問 8 個月前檢視次數 447 次
1 個回答
-1

Hi,

You will need 2 components to achieve your goal:

  1. CDK to create a trigger on DynamoDb starting a Lambda: full corresponding typescript code at https://dev.to/aws-builders/how-to-trigger-an-aws-lambda-from-a-dynamodb-stream-event-d8
  2. The Lambda starting and stopping the EC2 instance: you have security settings, Lambda code here: https://repost.aws/knowledge-center/start-stop-lambda-eventbridge

So, please, combine both to build you use case.

Best,

Didier

profile pictureAWS
專家
已回答 8 個月前
  • Hi, thanks for the reply. From my understanding about the second step, it starts an existing instance, not creates new one? Because it needs the 'instance-id', which I don't have before instance being created?

  • Hi, I thought that you may want to keep your instance across runs to be faster on start instead of terminating it each time. But, you can replace the start with create (with ad hoc paremeters: instance type, etc.) and the stop with terminate. You will find some sample code on the web easily

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

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

回答問題指南