mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 20:51:21 -03:30
Add verify_ssl to container_auth_data params
This commit is contained in:
parent
ac8b49b39d
commit
48eb06f320
@ -949,7 +949,8 @@ class BaseTask(object):
|
||||
host = cred.get_input('host')
|
||||
username = cred.get_input('username')
|
||||
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:
|
||||
raise RuntimeError('Please recheck that your host, username, and password fields are all filled.')
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user