forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 2
/
LimitSize.py
43 lines (37 loc) · 1.49 KB
/
LimitSize.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
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
import os
from pathlib import Path
from cfnlint._typing import RuleMatches
from cfnlint.helpers import LIMITS
from cfnlint.rules import CloudFormationLintRule, RuleMatch
from cfnlint.template import Template
class LimitSize(CloudFormationLintRule):
"""Check Template Size"""
id = "E1002"
shortdesc = "Validate if a template size is too large"
description = "Check the size of the template is less than the upper limit"
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html"
tags = ["limits"]
def match(self, cfn: Template) -> RuleMatches:
matches = []
# Only check if the file exists. The template could be passed in using stdIn
if cfn.filename:
if Path(cfn.filename).is_file():
statinfo = os.stat(cfn.filename)
if statinfo.st_size > LIMITS["template"]["body"]:
message = (
"The template file size ({0} bytes) exceeds the limit ({1}"
" bytes)"
)
matches.append(
RuleMatch(
["Template"],
message.format(
statinfo.st_size, LIMITS["template"]["body"]
),
)
)
return matches