File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
localstack-core/localstack/services/cloudformation/engine/v2 Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 44from localstack .services .cloudformation .engine .v2 .change_set_model_visitor import (
55 ChangeSetModelVisitor ,
66)
7+ from localstack .services .cloudformation .resources import AWS_AVAILABLE_CFN_RESOURCES
78from localstack .utils .catalog .catalog import (
89 AwsServicesSupportStatus ,
910 CatalogPlugin ,
@@ -91,6 +92,9 @@ def __init__(self):
9192 def visit_node_resource (self , node_resource : NodeResource ):
9293 resource_type = node_resource .type_ .value
9394 if resource_type not in self ._resource_failure_messages :
95+ if resource_type not in AWS_AVAILABLE_CFN_RESOURCES :
96+ # Ignore non-AWS resources
97+ pass
9498 support_status = self ._resource_support_status (resource_type )
9599 if support_status == CloudFormationResourcesSupportAtRuntime .AVAILABLE :
96100 pass
You can’t perform that action at this time.
0 commit comments