From 3cb8c26381fb825ef5c44a06e221add01a666c8c Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Thu, 9 Jun 2016 14:40:51 -0400 Subject: [PATCH] Force rackspace inventory to not verify ssl --- awx/main/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 91f0655794..577acb4ec0 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -807,6 +807,7 @@ class RunJob(BaseTask): elif cloud_cred and cloud_cred.kind == 'rax': env['RAX_USERNAME'] = cloud_cred.username env['RAX_API_KEY'] = decrypt_field(cloud_cred, 'password') + env['CLOUD_VERIFY_SSL'] = str(True) elif cloud_cred and cloud_cred.kind == 'gce': env['GCE_EMAIL'] = cloud_cred.username env['GCE_PROJECT'] = cloud_cred.project