Skip to content

Instantly share code, notes, and snippets.

@pierskarsenbarg
Created February 14, 2023 15:02
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 pierskarsenbarg/75040eeeee9d97d6f21289215df6bf84 to your computer and use it in GitHub Desktop.
Save pierskarsenbarg/75040eeeee9d97d6f21289215df6bf84 to your computer and use it in GitHub Desktop.
import * as lambdas from "./lambda";
const fn = new aws.lambda.CallbackFunction(`fn`, {
callback: lambdas.handler,
tags: standardTags,
environment: {
variables: {
TABLENAME: infra.tableName
}
},
runtime: aws.lambda.NodeJS12dXRuntime
})
export const handler = (e) => {
console.log(e);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment