Skip to content

Instantly share code, notes, and snippets.

@kainlite
Created April 27, 2019 20:12
Show Gist options
  • Select an option

  • Save kainlite/e52a9a9e63f7de88f11090add8668dd1 to your computer and use it in GitHub Desktop.

Select an option

Save kainlite/e52a9a9e63f7de88f11090add8668dd1 to your computer and use it in GitHub Desktop.
lambda terraform
// 'Hello World' nodejs6.10 runtime AWS Lambda function
exports.handler = (event, context, callback) => {
console.log('Hello world!');
callback(null, 'It works!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment