Skip to content

Instantly share code, notes, and snippets.

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 kevinchisholm/5d3fac37d855a2f402ad75e832596bc6 to your computer and use it in GitHub Desktop.
Save kevinchisholm/5d3fac37d855a2f402ad75e832596bc6 to your computer and use it in GitHub Desktop.
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