Skip to content

Instantly share code, notes, and snippets.

<vssd:VirtualSystemType>vmx-07</vssd:VirtualSystemType>
@nixjobin
nixjobin / AWS - Scheduled shutdown and startup of the EC2 instances
Last active September 18, 2022 14:01
AWS - Scheduled shutdown and startup of the EC2 instances
Youtube video - https://www.youtube.com/watch?v=jkn459MBNpo
#LAMBDA Stop instance index.js
const AWS = require('aws-sdk');
exports.handler = (event, context, callback) => {
const ec2 = new AWS.EC2({ region: event.instanceRegion });
ec2.stopInstances({ InstanceIds: [event.instanceId] }).promise()