Skip to content

Instantly share code, notes, and snippets.

View MichaelHuy's full-sized avatar
🏠
Working from home

Huy Le MichaelHuy

🏠
Working from home
View GitHub Profile
@smithclay
smithclay / index.js
Created June 16, 2017 18:30
"Hello World" AWS Lambda + Terraform Example
// 'Hello World' nodejs6.10 runtime AWS Lambda function
exports.handler = (event, context, callback) => {
console.log('Hello, logs!');
callback(null, 'great success');
}