mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes verify_ssl option when False in ansible_tower module util (#30308)
* Fixes verify_ssl option when False in ansible_tower module util * fixed comparison to None per PEP-8 standards
This commit is contained in:
parent
3ff527b1d2
commit
4980ebf064
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ def tower_auth_config(module):
|
|||
if password:
|
||||
auth_config['password'] = password
|
||||
verify_ssl = module.params.get('tower_verify_ssl')
|
||||
if verify_ssl:
|
||||
if verify_ssl is not None:
|
||||
auth_config['verify_ssl'] = verify_ssl
|
||||
return auth_config
|
||||
|
||||
|
|
Loading…
Reference in a new issue