sparse-intern-71089
02/28/2022, 9:54 AMgreat-queen-39697
02/28/2022, 2:24 PMwet-fall-68417
03/01/2022, 4:46 PMwet-fall-68417
03/01/2022, 4:47 PMconst internalLbTargetGroup = new aws.lb.TargetGroup("internal-lb-target-group", {
name: "studio-internal-lb-target-group",
targetType: "alb",
port: 80,
protocol: "HTTP",
vpcId: vpc.id,
healthCheck: {
path: "/api/health",
interval: 10,
enabled: true,
},
tags: {
Owner: "studio",
project: "studio"
},
});
wet-fall-68417
03/01/2022, 4:51 PMwet-fall-68417
03/01/2022, 5:49 PMgreat-queen-39697
03/01/2022, 8:49 PMgreat-queen-39697
03/01/2022, 8:52 PM6. For Protocol, only TCP is allowed. Select the Port for your target group. This target group port must match the listener port of the Application Load Balancer. Alternatively, you can add or edit the listener port on the Application Load Balancer to match this port.https://docs.aws.amazon.com/elasticloadbalancing/latest/network/application-load-balancer-target.html#register-application-load-balancer-target
wet-fall-68417
03/02/2022, 8:03 AM