1 Answer
- Newest
- Most votes
- Most comments
1
I don't know of any service that will do this for you, but you could create a lambda that checks all your lambda versions against versions that are coming to an end and notify you.
You could setup a dyanmodb table and update it from the dates in the Runtime end of support dates
table in this page: https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html.
The call to query the lambda would be something like:
aws lambda list-functions --function-version ALL --output text --query "Functions[?Runtime=='python2.7'].FunctionArn"
answered 3 years ago
Relevant content
- asked 3 years ago
- asked 2 years ago
- asked 2 months ago
- AWS OFFICIALUpdated 6 months ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
Thank you @Rollerlade7. How about a way of listing all the deprecated runtime?
I had a look into that, but it doesn't seem like AWS has an endpoint for that at the moment. The only thing I can think of is to create a page scraper to check the runtime support policy page table. Not ideal as the page formatting might change etc.. Else add a monthly calendar event to check the page your self?