Ant Media Server Cloudformation error: "resource types are not supported for resource import: AWS::ElasticLoadBalancingV2::TargetGroup"

Viewed 344

When I try to install cluster with Ant Media Server's CloudFormation template. I get the following error.

resource types are not supported for resource import: AWS::ElasticLoadBalancingV2::TargetGroup

enter image description here

2 Answers

The list of resources that can be imported into CFN is in:

If you inspect the list, you will see that AWS::ElasticLoadBalancingV2::TargetGroup is not supported and you can't import it. In terms of load balancers, you can only import:

  • AWS::ElasticLoadBalancing::LoadBalancer

  • AWS::ElasticLoadBalancingV2::Listener

  • AWS::ElasticLoadBalancingV2::ListenerRule

  • AWS::ElasticLoadBalancingV2::LoadBalancer

This problem is related to not creating a new stack and importing it. Please create a new stack and try it again.

Dashboard > Services > CloudFormation > Create Stack

enter image description here

Related