-
Notifications
You must be signed in to change notification settings - Fork 594
/
Used.py
61 lines (51 loc) · 2.15 KB
/
Used.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
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from cfnlint._typing import RuleMatches
from cfnlint.helpers import is_function
from cfnlint.rules import CloudFormationLintRule, RuleMatch
from cfnlint.template import Template
class Used(CloudFormationLintRule):
"""Check if Mappings are used anywhere in the template"""
id = "W7001"
shortdesc = "Check if Mappings are Used"
description = "Making sure the mappings defined are used"
source_url = "https://github.com/aws-cloudformation/cfn-lint"
tags = ["mappings"]
def match(self, cfn: Template) -> RuleMatches:
matches: RuleMatches = []
findinmap_mappings = []
mappings = cfn.template.get("Mappings", {})
k, _ = is_function(mappings)
if k == "Fn::Transform":
self.logger.debug(
(f"Mapping Name has a transform. Disabling check {self.id!r}"),
)
return matches
if mappings:
# Get all "FindInMaps" that reference a Mapping
maptrees = cfn.transform_pre["Fn::FindInMap"]
for maptree in maptrees:
if isinstance(maptree[-1], list):
map_name = maptree[-1][0]
if isinstance(map_name, dict):
self.logger.debug(
(
"Mapping Name has a function that can have too many"
" variations. Disabling check %s"
),
self.id,
)
return matches
findinmap_mappings.append(maptree[-1][0])
else:
findinmap_mappings.append(maptree[-1])
# Check if the mappings are used
for mapname, _ in mappings.items():
if mapname not in findinmap_mappings:
message = "Mapping '{0}' is defined but not used"
matches.append(
RuleMatch(["Mappings", mapname], message.format(mapname))
)
return matches