-
Notifications
You must be signed in to change notification settings - Fork 594
/
Configuration.py
47 lines (39 loc) · 1.55 KB
/
Configuration.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
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from typing import Any
import cfnlint.data.schemas.other.resources
import cfnlint.helpers
from cfnlint.helpers import FUNCTIONS
from cfnlint.jsonschema import Validator
from cfnlint.rules.jsonschema.CfnLintJsonSchema import CfnLintJsonSchema, SchemaDetails
from cfnlint.schema.resolver import RefResolver
class Configuration(CfnLintJsonSchema):
"""Check Update Policy Configuration"""
id = "E3016"
shortdesc = "Check the configuration of a resources UpdatePolicy"
description = "Make sure a resources UpdatePolicy is properly configured"
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html"
tags = ["resources", "updatepolicy"]
def __init__(self) -> None:
super().__init__(
keywords=["Resources/*"],
schema_details=SchemaDetails(
module=cfnlint.data.schemas.other.resources,
filename="update_policy.json",
),
all_matches=True,
)
def validate(self, validator: Validator, keywords: Any, instance: Any, schema: Any):
validator = validator.evolve(
context=validator.context.evolve(
functions=list(FUNCTIONS),
strict_types=False,
),
schema=self._schema,
resolver=RefResolver.from_schema(
self._schema,
),
)
yield from super()._iter_errors(validator, instance)