I am using the ELB command line tools available form AMAZON. Is there a way of finding out the instances attached to a particular Elastic Load Balancer,(ELB)
A:
I'm not familiar with the cli tool, but I used the API.
I'd check these two requests:
The cli tool probably has something to resemble these?
HTH!
Till
2010-10-24 23:51:56
DescribeLoadBalancers does not give a list of instances attached to a loadbalancer. That is my understanding.
sheki
2010-10-25 08:53:30
There is an `<Instances/>` in the sample response for `DescribeLoadbalancers` in the docs. If this doesn't work, try `DescribeInstanceHealth`? It takes two parameters - an optional list of instances and a load balancer name. From what I understand this should def. return all of them if you omit a list of instances and just provide the name of the loadbalancer.
Till
2010-10-25 12:26:14