mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #15059 from willthames/remove_boto_ec2_requirement
Remove need for unnecessary boto.ec2 import
This commit is contained in:
commit
78365e206f
1 changed files with 2 additions and 10 deletions
|
@ -92,10 +92,6 @@ def ec2_argument_spec():
|
||||||
return spec
|
return spec
|
||||||
|
|
||||||
|
|
||||||
def boto_supports_profile_name():
|
|
||||||
return hasattr(boto.ec2.EC2Connection, 'profile_name')
|
|
||||||
|
|
||||||
|
|
||||||
def get_aws_connection_info(module, boto3=False):
|
def get_aws_connection_info(module, boto3=False):
|
||||||
|
|
||||||
# Check module args for credentials, then check environment vars
|
# Check module args for credentials, then check environment vars
|
||||||
|
@ -179,15 +175,11 @@ def get_aws_connection_info(module, boto3=False):
|
||||||
aws_secret_access_key=secret_key,
|
aws_secret_access_key=secret_key,
|
||||||
security_token=security_token)
|
security_token=security_token)
|
||||||
|
|
||||||
# profile_name only works as a key in boto >= 2.24
|
# only set profile_name if passed as an argument
|
||||||
# so only set profile_name if passed as an argument
|
|
||||||
if profile_name:
|
if profile_name:
|
||||||
if not boto_supports_profile_name():
|
|
||||||
module.fail_json("boto does not support profile_name before 2.24")
|
|
||||||
boto_params['profile_name'] = profile_name
|
boto_params['profile_name'] = profile_name
|
||||||
|
|
||||||
if HAS_LOOSE_VERSION and LooseVersion(boto.Version) >= LooseVersion("2.6.0"):
|
boto_params['validate_certs'] = validate_certs
|
||||||
boto_params['validate_certs'] = validate_certs
|
|
||||||
|
|
||||||
for param, value in boto_params.items():
|
for param, value in boto_params.items():
|
||||||
if isinstance(value, str):
|
if isinstance(value, str):
|
||||||
|
|
Loading…
Reference in a new issue