Skip to content

Instantly share code, notes, and snippets.

@barograf
barograf / serverless.yml
Created September 8, 2018 18:57
Hello world Lambda provisioning
service: hello-world
provider:
name: aws
runtime: nodejs8.10
stage: dev
region: us-east-1
functions:
api:
@barograf
barograf / index.js
Last active September 8, 2018 18:53
Hello world Lambda
exports.handler = async (event, context) => {
return {
statusCode: 200,
body: 'hello world'
};
};