Reputation: 21
Everytime I deploy a Lambda function with the same image digest by serverless framework, serverless framework creates a new lambda version. How do I avoid to create a new lambda version when deploy lambda function by serverless framework with same image digest?
Upvotes: 1
Views: 3033
Reputation: 103
According to docs, In your configuration file, set this provider-level option
provider:
versionFunctions: false
By default, the framework creates function versions for every deploy. This behavior is optional, and can be turned off...
Upvotes: 5