Created
April 2, 2020 18:18
-
-
Save kevinchisholm/5d3fac37d855a2f402ad75e832596bc6 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
module.exports.getSecret = async (event, context) => { | |
return { | |
statusCode: 200, | |
body: JSON.stringify({ | |
message: `Decrypted Secret: ${process.env.myApiKey}` | |
}) | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment