Created
January 21, 2022 08:56
-
-
Save sachinsmc/70fefad9533bec443989ecd61a15fa0a to your computer and use it in GitHub Desktop.
Debug configuration for AWS Lambda - Serverless Invoke Local
This file contains 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
{ | |
"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