Created
March 10, 2019 17:19
-
-
Save sdomagala/4813c15b4b8d2aecf5a5925060a0ff22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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