-
Notifications
You must be signed in to change notification settings - Fork 596
/
Used.py
56 lines (45 loc) · 1.81 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
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import unicode_literals
from cfnlint._typing import RuleMatches
from cfnlint.rules import CloudFormationLintRule, RuleMatch
from cfnlint.template import Template
class Used(CloudFormationLintRule):
"""Check if Parameters are used"""
id = "W2001"
shortdesc = "Check if Parameters are Used"
description = "Making sure the parameters defined are used"
source_url = "https://github.com/aws-cloudformation/cfn-lint"
tags = ["parameters"]
def match(self, cfn: Template) -> RuleMatches:
if cfn.transform_pre["Transform"]:
return []
matches: RuleMatches = []
le_refs = None
if cfn.has_language_extensions_transform():
le_refs = cfn.search_deep_keys("Ref")
reftrees = cfn.transform_pre.get("Ref", [])
subtrees = cfn.transform_pre.get("Fn::Sub", [])
refs = []
for reftree in reftrees:
refs.append(reftree[-1])
if le_refs:
for le_ref in le_refs:
if le_ref[-1] not in refs:
refs.append(le_ref[-1])
subs = []
for subtree in subtrees:
if isinstance(subtree[-1], list):
subs.extend(cfn.get_sub_parameters(subtree[-1][0]))
elif isinstance(subtree[-1], str):
subs.extend(cfn.get_sub_parameters(subtree[-1]))
for paramname in cfn.template.get("Parameters", {}).keys():
if paramname not in refs:
if paramname not in subs:
message = "Parameter {0} not used."
matches.append(
RuleMatch(["Parameters", paramname], message.format(paramname))
)
return matches