mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 09:27:36 -02:30
Add verify_ssl to container_auth_data params
This commit is contained in:
@@ -949,7 +949,8 @@ class BaseTask(object):
|
|||||||
host = cred.get_input('host')
|
host = cred.get_input('host')
|
||||||
username = cred.get_input('username')
|
username = cred.get_input('username')
|
||||||
password = cred.get_input('password')
|
password = cred.get_input('password')
|
||||||
params['container_auth_data'] = {'host': host, 'username': username, 'password': password}
|
verify_ssl = cred.get_input('verify_ssl')
|
||||||
|
params['container_auth_data'] = {'host': host, 'username': username, 'password': password, 'verify_ssl': verify_ssl}
|
||||||
else:
|
else:
|
||||||
raise RuntimeError('Please recheck that your host, username, and password fields are all filled.')
|
raise RuntimeError('Please recheck that your host, username, and password fields are all filled.')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user