forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircularDependency.py
33 lines (27 loc) · 1.2 KB
/
CircularDependency.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
"""
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 CircularDependency(CloudFormationLintRule):
"""Check if Resources have a circular dependency"""
id = 'E3004'
shortdesc = 'Resource dependencies are not circular'
description = 'Check that Resources are not circularly dependent by DependsOn, Ref, Sub, or GetAtt'
source_url = 'https://github.com/aws-cloudformation/cfn-python-lint'
tags = ['resources', 'circularly', 'dependson', 'ref', 'sub', 'getatt']
def match(self, cfn):
matches = []
if cfn.graph is None:
return []
for cycle in cfn.graph.get_cycles(cfn):
source, target = cycle[:2]
if (
cfn.graph.graph.nodes[source].get('type') == 'Resource'
and cfn.graph.graph.nodes[target].get('type') == 'Resource'
):
message = f'Circular Dependencies for resource {source}. Circular dependency with [{target}]'
path = ['Resources', source]
matches.append(RuleMatch(path, message))
return matches