Skip to content

Instantly share code, notes, and snippets.

@sachinsmc
Created January 21, 2022 08:56
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 sachinsmc/70fefad9533bec443989ecd61a15fa0a to your computer and use it in GitHub Desktop.
Save sachinsmc/70fefad9533bec443989ecd61a15fa0a to your computer and use it in GitHub Desktop.
Debug configuration for AWS Lambda - Serverless Invoke Local
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug AWS Lambda",
"program": "${workspaceRoot}/node_modules/.bin/sls",
"runtimeVersion": "12.20.2",
"args": [
"invoke", "local", "-f", "handler"
],
"console": "integratedTerminal",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment