When your Lambda need to import libraries, packaing all libraries along with your business logic is not recommended. Instead you can upload libraries as Lambda Layers, so that multiple Lambda functions can access libray from a common location (layer). This module will create an AWS Lambda Layer with ANY nodejs library you like.
Removed Node.js 16 (nodejs16.x) from the allowed runtime list as AWS is ending support for Node.js 16 in Lambda on June 12, 2024. Read our blog for more details.
- Input variable nodejs_runtime will not allow nodejs16.x anymore. You can provide either nodejs20.x or nodejs18.x as runtime.
None