mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Pass region and ec2_url to boto3 connection (#30370)
fixes ansible/ansible#30368
This commit is contained in:
committed by
Will Thames
parent
f8005d2737
commit
4ec91491e2
@@ -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))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user