Merge pull request #6002 from chrishoffman/ec2_validate

Small fix for ec2 validate_certs option
pull/5689/head
James Cammarata 11 years ago
commit 6c3b4570d7

@ -69,7 +69,7 @@ def ec2_connect(module):
""" Return an ec2 connection""" """ Return an ec2 connection"""
ec2_url, aws_access_key, aws_secret_key, region = get_ec2_creds(module) 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 we have a region specified, connect to its endpoint.
if region: if region:

Loading…
Cancel
Save