Skip to content

Instantly share code, notes, and snippets.

@sdomagala
Created March 10, 2019 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sdomagala/4813c15b4b8d2aecf5a5925060a0ff22 to your computer and use it in GitHub Desktop.
Save sdomagala/4813c15b4b8d2aecf5a5925060a0ff22 to your computer and use it in GitHub Desktop.
'use strict';
module.exports.handler = (event, context, cb) => {
return cb(null, {
statusCode: 200,
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
region: process.env.LAMBDA_REGION
})
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment