Hello :slightly_smiling_face: I have a question re...
# general
a
Hello 🙂 I have a question regarding AWS
TargetGroups
. I want to create a target group and register an instance I've created in a previous step:
Copy code
new aws.elasticloadbalancingv2.TargetGroup(`${config.fqsn}-access-tg`, {
  vpcId: config.vpc,
  protocol: "HTTPS",
  port: 8443,
  targetType: "instance",
  healthCheck: {
    protocol: "HTTPS",
    port: "traffic",
    path: "/"
  },
});
Unfortunately, there is no
targets
attribute in the
TargetGroupArgs
. Chances are that I miss something. Any help is highly appreciated 🙂
w
a
Ah awesome. Thanks @white-balloon-205 – Will give it a try today. 🙂