From 48eb06f320f024627c251ccfe7b8e0f9f8e00ff4 Mon Sep 17 00:00:00 2001 From: beeankha Date: Thu, 16 Sep 2021 09:42:20 -0400 Subject: [PATCH] Add verify_ssl to container_auth_data params --- awx/main/tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 5d912f8285..1ab17fc371 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -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.')