views:

12

answers:

1

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
DescribeLoadBalancers does not give a list of instances attached to a loadbalancer. That is my understanding.
sheki
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