1 Answer
- Newest
- Most votes
- Most comments
1
Hi,
You are getting this error because you are trying to use the CDK project's package.json to be used by your Lambda Function too. But, it doesn't work that way.
There are 2 options to achieve this:
- You can create a separate runtime environment (i.e. package.json) for your lambda, and then install the "axios" dependency into it. [1]
- You can also choose to create a Lambda Layer that includes the "axios" dependency and configure the Lambda function to use the Lambda Layer.
For ease, you can go with the first option. Here's a reference for it: [1]. The folder structure should look like this:
|-- lambdas/
| |-- package.json
| |-- index.ts
|-- bin/
|-- lib/
|-- package.json
|-- ...
References:
[1] https://stackoverflow.com/questions/67361096/how-can-i-zip-node-lambda-dependencies-in-aws-cdk-stack
[2] https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda-readme.html
Thanks,
Atul
answered a year ago
Relevant content
- Accepted Answerasked 8 months ago
- Accepted Answerasked 2 years ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 4 months ago
- AWS OFFICIALUpdated 2 years ago