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 个月前446 查看次数
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

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则