forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterfaceConfiguration.py
58 lines (49 loc) · 2.33 KB
/
InterfaceConfiguration.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
"""
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 InterfaceConfiguration(CloudFormationLintRule):
"""Check if Metadata Interface Configuration are configured correctly"""
id = 'E4001'
shortdesc = 'Metadata Interface have appropriate properties'
description = 'Metadata Interface properties are properly configured'
source_url = 'https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-interface.html'
tags = ['metadata']
valid_keys = ['ParameterGroups', 'ParameterLabels']
def match(self, cfn):
"""Check CloudFormation Metadata Interface Configuration"""
matches = []
strinterface = 'AWS::CloudFormation::Interface'
metadata_obj = cfn.template.get('Metadata', {})
if metadata_obj:
interfaces = metadata_obj.get(strinterface, {})
if isinstance(interfaces, dict):
for interface in interfaces:
if interface not in self.valid_keys:
message = 'Metadata Interface has invalid property {0}'
matches.append(
RuleMatch(
['Metadata', strinterface, interface],
message.format(interface),
)
)
parameter_groups = interfaces.get('ParameterGroups', [])
for index, value in enumerate(parameter_groups):
for key in value:
if key not in ['Label', 'Parameters']:
message = 'Metadata Interface has invalid property {0}'
matches.append(
RuleMatch(
[
'Metadata',
strinterface,
'ParameterGroups',
index,
key,
],
message.format(key),
)
)
return matches