forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DeprecatedRuntimeEol.py
62 lines (53 loc) · 2.14 KB
/
DeprecatedRuntimeEol.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
58
59
60
61
62
"""
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 DeprecatedRuntimeEol(CfnLintKeyword):
id = "W2531"
shortdesc = "Check if EOL Lambda Function Runtimes are used"
description = (
"Check if an EOL Lambda Runtime is specified and give a warning if used. "
)
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["deprecated"], "%Y-%m-%d")
<= self.current_date
and datetime.strptime(runtime_data["create-block"], "%Y-%m-%d")
> self.current_date
and 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}"
),
)