little-market-63455
07/13/2021, 12:24 PMaws.lb.listener
?
Has anyone seen this behavior before?
Keeps saying You cannot specify a target group weight on load balancers of type 'network'
and my group definition looks like:
const fileUploadListener = new aws.lb.Listener('fileUploadListener',
{
defaultActions: [
{
type: 'forward',
forward: {
targetGroups: [{ arn: fileUploadTargetGroup.arn }],
},
},
],
loadBalancerArn: // some ARN,
port: 8084,
protocol: 'TCP',
},
)
1
to the weight which I feel is like a default that breaks with NLBs