This message was deleted.
# aws
s
This message was deleted.
l
You need a default action on the HTTPS listener too, don't you? I've never used the awsx load balancer, but with the aws API, you need to provide this sort of thing for the HTTPS default aciton:
Copy code
defaultActions: [
          {
            type: "forward",
            targetGroupArn: defaultTargetGroup.arn,
          },
        ],
Since the awsx code creates the default target group, maybe that's not needed for you?