forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLimitDescription.py
24 lines (21 loc) · 1.01 KB
/
LimitDescription.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
"""
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
from cfnlint.helpers import LIMITS
class LimitDescription(CloudFormationLintRule):
"""Check Template Description Size"""
id = 'E1003'
shortdesc = 'Template description limit'
description = 'Check if the size of the template description is less than the upper limit'
source_url = 'https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html'
tags = ['description', 'limits']
def match(self, cfn):
matches = []
description = cfn.template.get('Description', '')
if len(description) > LIMITS['template']['description']:
message = 'The template description ({0} bytes) exceeds the limit ({1} bytes)'
matches.append(RuleMatch(['Description'], message.format(len(description), LIMITS['template']['description'])))
return matches