Currently, I am facing a scenario that I have to deploy my Lambda function inside of my own VPC (though I know it is a bad practice!). There are some bad part I know for doing that:
- cold start time
- need for NAT gateway
- Assign ENI to functions
Recently, I read a blog post like this: https://aws.amazon.com/blogs/compute/announcing-improved-vpc-networking-for-aws-lambda-functions/ which kinds of solving some part of the problem.
But after searching on Internet, find there is no content related to this new feature with Serverless Framework yet. Just curious: is there any plan or roadmap for adopting this feature into the framework or I missed something on this? Thanks.
Best.