If I have an ECS cluster with N distinct websites running as N services on said cluster - how do I go about setting up the load balancers?
The way I've done it currently is for each website X,
- I create a new target group spanning all instances in the cluster
- I create a new application load balancer
- I attach the ALB to the service using the target group
It seems to work... but am want to make sure this is the correct way to do this
Thanks!