Reputation: 179
When I try to upload new version to a function in AWS Lambda, the option to upload a zip file is not allowed. (See the picture bellow)
It used to be able to choose the $latest version of a function and then to upload the zip file but now i cannot find it.
Any ideas what to do with this?
Upvotes: 2
Views: 1623
Reputation: 179
The problem was that the runtime of Node.js 10.x is no longer supported by AWS. It was needed to upgrade to Node.js14.x and after that, we could've update the version of our function.
Upvotes: 3