forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsed.py
52 lines (41 loc) · 1.75 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
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from cfnlint.rules import CloudFormationLintRule
from cfnlint.rules import RuleMatch
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-python-lint'
tags = ['mappings']
def match(self, cfn):
matches = []
findinmap_mappings = []
mappings = cfn.template.get('Mappings', {})
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