forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApproachingLimitAttributes.py
26 lines (23 loc) · 1.27 KB
/
ApproachingLimitAttributes.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
"""
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 LimitAttributes(CloudFormationLintRule):
"""Check maximum Mapping attribute limit"""
id = 'I7012'
shortdesc = 'Mapping attribute limit'
description = 'Check if the amount of Mapping attributes in the template is approaching the upper limit'
source_url = 'https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html'
tags = ['mappings', 'limits']
def match(self, cfn):
matches = []
for mapping_name, mapping in cfn.template.get('Mappings', {}).items():
for mapping_attribute_name, mapping_attribute in mapping.items():
path = ['Mappings', mapping_name, mapping_attribute_name]
if LIMITS['threshold'] * LIMITS['Mappings']['attributes'] < len(mapping_attribute) <= LIMITS['Mappings']['attributes']:
message = 'The amount of mapping attributes ({0}) is approaching the limit ({1})'
matches.append(RuleMatch(path, message.format(len(mapping_attribute), LIMITS['Mappings']['attributes'])))
return matches