Created
January 15, 2013 15:31
-
-
Save garnaat/4539460 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto.ec2 | |
import boto.ec2.elb | |
for region in boto.ec2.regions(): | |
ec2_conn = region.connect() | |
elb_conn = boto.ec2.elb.connect_to_region(region.name) | |
# do stuff with EC2 and ELB for this region here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment