Closed GoogleCodeExporter closed 9 years ago
Although the error message you are receiving gives you no clue whatsoever, I
suspect that the problem is that bot is not able to find your AWS credentials.
I believe the latest version of the code in the RC1 release gives you a better
error message.
Original comment by Mitch.Ga...@gmail.com
on 14 Jun 2011 at 1:13
I see.
I am manipulating multiple AWS accounts with one backend daemon, which calls
boto API. So Is there a way to get RegionInfo object without AWS credentials?
Original comment by jass.z...@gmail.com
on 14 Jun 2011 at 3:08
You can just create a RegionInfo object manually, like this:
>>> from boto.ec2.regioninfo import RegionInfo
>>> r = RegionInfo(name='us-east-1', endpoint='ec2.amazon.com')
>>> conn = r.connect()
Original comment by Mitch.Ga...@gmail.com
on 15 Jun 2011 at 11:17
I'm going to close this. Re-open if you think further action is required.
Original comment by Mitch.Ga...@gmail.com
on 18 Jun 2011 at 12:50
Original issue reported on code.google.com by
jass.z...@gmail.com
on 14 Jun 2011 at 9:56