Change s3 to use connect_to_region

* Allows us to use Ansible/s3 for GovCloud when accessing a pre-existing bucket
This commit is contained in:
Michael Laccetti 2015-02-25 08:46:13 -05:00
parent 58534d0c71
commit 60e2e43f00

View file

@ -339,7 +339,8 @@ def main():
module.fail_json(msg = str(e))
else:
try:
s3 = boto.connect_s3(aws_access_key, aws_secret_key)
from boto.s3.connection import OrdinaryCallingFormat
s3 = boto.s3.connect_to_region(location, aws_access_key_id=aws_access_key, aws_secret_access_key=aws_secret_key, is_secure=True, calling_format=OrdinaryCallingFormat())
except boto.exception.NoAuthHandlerFound, e:
module.fail_json(msg = str(e))