serverless-components / express

⚡ Take existing Express.js apps and host them easily on cheap, auto-scaling, serverless infrastructure (AWS Lambda and AWS HTTP API).
https://serverless.com/components
Apache License 2.0
375 stars 34 forks source link

Added support for 10gb lambdas #53

Open joswayski opened 3 years ago

joswayski commented 3 years ago

AWS now supports 10gb lambdas https://aws.amazon.com/about-aws/whats-new/2020/12/aws-lambda-supports-10gb-memory-6-vcpu-cores-lambda-functions/

And in 1mb increments https://aws.amazon.com/lambda/pricing/

So instead of checking whether the memory value is in one of the - allow options, we can just check if it is within the lambda memory range (128mb <--> 10240mb)

robertgoacher commented 2 years ago

Is this change going to be implemented?