average-kilobyte-47828
10/30/2020, 9:15 AMportMappings: [listener]
, which looks like a bit of magic. It uses listeners default target group. Can I provide a target group directly instead of a listener?broad-gold-44713
10/30/2020, 8:34 PMportMappings: [{containerPort: xxxx}]
in the taskDefinition and in the service definition:
loadBalancers: [
{
containerName: '<containerName>',
containerPort: xxx,
targetGroupArn: <targetGroupArn>
}
]
average-kilobyte-47828
10/30/2020, 10:16 PM