Add verify_ssl to container_auth_data params

This commit is contained in:
beeankha 2021-09-16 09:42:20 -04:00
parent ac8b49b39d
commit 48eb06f320

View File

@ -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.')