forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBase.py
More file actions
36 lines (29 loc) · 1.1 KB
/
Base.py
File metadata and controls
36 lines (29 loc) · 1.1 KB
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
"""
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 Base(CloudFormationLintRule):
"""Check Base Template Settings"""
id = 'E1001'
shortdesc = 'Basic CloudFormation Template Configuration'
description = 'Making sure the basic CloudFormation template components are properly configured'
source_url = 'https://github.com/aws-cloudformation/cfn-python-lint'
tags = ['base']
required_keys = [
'Resources'
]
def match(self, cfn):
matches = []
top_level = []
for x in cfn.template:
top_level.append(x)
if x not in cfn.sections:
message = 'Top level template section {0} is not valid'
matches.append(RuleMatch([x], message.format(x)))
for y in self.required_keys:
if y not in top_level:
message = 'Missing top level template section {0}'
matches.append(RuleMatch([y], message.format(y)))
return matches