def get_ap_loadbalancer_servers():      

   ap_dict = {}
   ap_ec2 = ec2_regions[6]
   ap_elb = elb_regions[3]
   print ap_elb
   conn_ap_ec2 = ap_ec2.connect(aws_access_key_id= AWS_ACCESS, aws_secret_access_key = AWS_SECRETE_KEY)
   conn_ap_elb = ap_elb.connect(aws_access_key_id= AWS_ACCESS, aws_secret_access_key = AWS_SECRETE_KEY)
   load_balancers = conn_ap_elb.get_all_load_balancers()
   instance_ids = [i.id for i in load_balancers[0].instances]
   reservations = conn_ap_ec2.get_all_instances(instance_ids)

   instances = [r.instances[0] for r in reservations]
   public_dns_name = [i.public_dns_name for i in instances]
   instancesids = [str(instance).split(":")[1] for instance in instances]

   ap_dict = dict(zip(instancesids, public_dns_name))
   return ap_dict

I am getting the server's that are under loadbalancer in AP-Singapore region, i have a total of 4 servers but when running this code i get only 2 servers, the same code when i run in US-East by changing the region work's fine, i get all my servers in US.

link|improve this question

73% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.