Pass region and ec2_url to boto3 connection (#30370)

fixes ansible/ansible#30368
This commit is contained in:
Stepan Stipl 2017-09-15 04:54:29 +01:00 committed by Will Thames
parent f8005d2737
commit 4ec91491e2

View file

@ -236,7 +236,7 @@ def main():
region, ec2_url, aws_connect_params = get_aws_connection_info(module, boto3=True)
try:
connection = boto3_conn(module, conn_type='client', resource='ec2', **aws_connect_params)
connection = boto3_conn(module, conn_type='client', resource='ec2', region=region, endpoint=ec2_url, **aws_connect_params)
except (botocore.exceptions.NoCredentialsError, botocore.exceptions.ProfileNotFound) as e:
module.fail_json(msg=e.message, exception=traceback.format_exc(), **camel_dict_to_snake_dict(e.response))