Reputation: 6876
I have a lambda function that I need to roll back and use a previous version.
The lambda is triggered by an S3 event, where S3 invokes the function ARN without any version or alias qualifier, therefore only uses the $LATEST
Due to IAM constraints in the organization, I'm unable to alter the s3 events to point to a specific Lambda version or alias.
Is there an easy way to update $LATEST
to point to a previous version of the function?
Upvotes: 3
Views: 3246
Reputation: 1845
I don't think you can "out of the box". What you can do is one of the following:
Or
Upvotes: 2