consul: fix param name for verify SSL (#2194)

Introduced in #1793, fixes #2114, needs backport to 2.1
This commit is contained in:
René Moser 2016-05-27 15:46:56 +02:00
parent 3ca06bf1c8
commit e388fb4006
3 changed files with 3 additions and 3 deletions

View file

@ -332,7 +332,7 @@ def get_consul_api(module, token=None):
return consul.Consul(host=module.params.get('host'),
port=module.params.get('port'),
scheme=module.params.get('scheme'),
validate_certs=module.params.get('validate_certs'),
verify=module.params.get('validate_certs'),
token=module.params.get('token'))

View file

@ -313,7 +313,7 @@ def get_consul_api(module, token=None):
return consul.Consul(host=module.params.get('host'),
port=module.params.get('port'),
scheme=module.params.get('scheme'),
validate_certs=module.params.get('validate_certs'),
verify=module.params.get('validate_certs'),
token=token)
def test_dependencies(module):

View file

@ -244,7 +244,7 @@ def get_consul_api(module, token=None):
return consul.Consul(host=module.params.get('host'),
port=module.params.get('port'),
scheme=module.params.get('scheme'),
validate_certs=module.params.get('validate_certs'),
verify=module.params.get('validate_certs'),
token=module.params.get('token'))
def test_dependencies(module):