Skip to content

CloudPediaAI/terraform-aws-lambdalayer-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lambda Layer for Node.js Libraries

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.

Links

Related Terraform Modules from CloudPedia.AI

Scheduled Job for AWS

Lambda Layer for Python Libraries

Release Notes

v1.1.0

Changes/Updates

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 Changes

  • Input variable nodejs_runtime will not allow nodejs16.x anymore. You can provide either nodejs20.x or nodejs18.x as runtime.

Output Variable Changes

None