Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save mikepfeiffer/3851e3bd95591e0675aa4c76cd57635f to your computer and use it in GitHub Desktop.
Save mikepfeiffer/3851e3bd95591e0675aa4c76cd57635f to your computer and use it in GitHub Desktop.
AWS Lambda Function to Start an EC2 Instance
var AWS = require('aws-sdk');
exports.handler = function(event, context) {
var ec2 = new AWS.EC2({region: 'us-east-1'});
ec2.startInstances({InstanceIds : ['i-0114833f8ffc9151c'] },function (err, data) {
if (err) console.log(err, err.stack);
else console.log(data);
context.done(err,data);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment