AWS Lambda Code Storage Limit Exceeded — Serverless Framework

Agit Isik
Apr 7, 2022

As we know, the code storage limit offered by AWS is 75GB. This limit is essentially a quota that can be consumed quickly. It increases continuously with each deploy operation.

To solve this completely, you can turn off versioning.

So, it will be enough to add versionFunctions: false code under provider in the serverless.yml file.

Thank you

--

--