-
Notifications
You must be signed in to change notification settings - Fork 594
/
DeprecatedRuntimeUpdate.py
57 lines (49 loc) · 1.94 KB
/
DeprecatedRuntimeUpdate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
from datetime import datetime
from typing import Any
from cfnlint.data import AdditionalSpecs
from cfnlint.helpers import load_resource
from cfnlint.jsonschema import ValidationError, ValidationResult, Validator
from cfnlint.rules.jsonschema.CfnLintKeyword import CfnLintKeyword
class DeprecatedRuntimeUpdate(CfnLintKeyword):
id = "E2533"
shortdesc = "Check if Lambda Function Runtimes are updatable"
description = (
"Check if an EOL Lambda Runtime is specified and you cannot update the function"
)
source_url = (
"https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html"
)
tags = ["resources", "lambda", "runtime"]
def __init__(self):
"""Init"""
super().__init__(["Resources/AWS::Lambda::Function/Properties/Runtime"])
self.current_date = datetime.today()
self.deprecated_runtimes = load_resource(
AdditionalSpecs, "LmbdRuntimeLifecycle.json"
)
def validate(
self, validator: Validator, v: Any, runtime: Any, schema: dict[str, Any]
) -> ValidationResult:
if not validator.is_type(runtime, "string"):
return
runtime_data = self.deprecated_runtimes.get(runtime)
if not runtime_data:
return
if (
datetime.strptime(runtime_data["update-block"], "%Y-%m-%d")
<= self.current_date
):
yield ValidationError(
(
f"Runtime {runtime!r} was deprecated on "
f"{runtime_data['deprecated']!r}. Creation was disabled on "
f"{runtime_data['create-block']!r} and update on "
f"{runtime_data['update-block']!r}. Please consider "
f"updating to {runtime_data['successor']!r}"
),
)