mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 21:30:22 -07:00
Small fix for ec2 validate_certs option
This commit is contained in:
parent
0d79132757
commit
affed67ebd
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ def ec2_connect(module):
|
|||
""" Return an ec2 connection"""
|
||||
|
||||
ec2_url, aws_access_key, aws_secret_key, region = get_ec2_creds(module)
|
||||
validate_certs = module.get('validate_certs', True)
|
||||
validate_certs = module.params.get('validate_certs', True)
|
||||
|
||||
# If we have a region specified, connect to its endpoint.
|
||||
if region:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue