mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 01:47:35 -02:30
Updated injector.py and added new test into test_tasks.py
This commit is contained in:
@@ -76,8 +76,9 @@ def _openstack_data(cred):
|
||||
openstack_auth = dict(auth_url=cred.get_input('host', default=''),
|
||||
username=cred.get_input('username', default=''),
|
||||
password=cred.get_input('password', default=''),
|
||||
project_name=cred.get_input('project', default=''),
|
||||
project_domain_name=cred.get_input('project_domain_name', default=''))
|
||||
project_name=cred.get_input('project', default=''))
|
||||
if cred.has_input('project_domain_name'):
|
||||
openstack_auth['project_domain_name'] = cred.get_input('project_domain_name', default='')
|
||||
if cred.has_input('domain'):
|
||||
openstack_auth['domain_name'] = cred.get_input('domain', default='')
|
||||
verify_state = cred.get_input('verify_ssl', default=True)
|
||||
|
||||
Reference in New Issue
Block a user