AWS CodeDeploy DeploymentGroup TargetGroupInfo
The TargetGroupInfo property type specifies information about a target group
in Elastic Load Balancing to use in a deployment. Instances are registered as targets
in a target group, and
traffic is routed to the target group. For more information, see TargetGroupInfo in the
AWS CodeDeploy API Reference
If you specify the TargetGroupInfo property, the DeploymentStyle.DeploymentOption property must be set to
WITH_TRAFFIC_CONTROL for AWS CodeDeploy to route your traffic using the specified target groups.
TargetGroupInfo is a property of the LoadBalancerInfo property type.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "Name" :String}
YAML
Name:String
Properties
Name-
For blue/green deployments, the name of the target group that instances in the original environment are deregistered from, and instances in the replacement environment registered with. For in-place deployments, the name of the target group that instances are deregistered from, so they are not serving traffic during a deployment, and then re-registered with after the deployment completes. No duplicates allowed.
Note
AWS CloudFormation supports blue/green deployments on AWS Lambda compute platforms only.
This value can't exceed 32 characters, so you should use the
Nameproperty of the target group, or theTargetGroupNameattribute with theFn::GetAttintrinsic function, as shown in the following example. Don't use the group's Amazon Resource Name (ARN) orTargetGroupFullNameattribute.Required: No
Type: String
Update requires: No interruption
Example
The following snippet gets the name of the target group, which AWS CodeDeploy uses to register and deregister instances from the target group during deployments.
JSON
"LoadBalancerInfo" : { "TargetGroupInfoList" : [ { "Name": { "Fn::GetAtt": ["MyTargetGroup", "TargetGroupName"] } } ] }
YAML
LoadBalancerInfo: TargetGroupInfoList: - Name: !GetAtt MyTargetGroup.TargetGroupName
