mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #39079 from gtmanfred/2016.3
use_keystoneauth should default to False if not specified
This commit is contained in:
commit
8a4d210959
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ def get_conn():
|
|||
kwargs['project_id'] = vm_['tenant']
|
||||
kwargs['auth_url'] = vm_['identity_url']
|
||||
kwargs['region_name'] = vm_['compute_region']
|
||||
kwargs['use_keystoneauth'] = vm_['use_keystoneauth']
|
||||
kwargs['use_keystoneauth'] = vm_.get('use_keystoneauth', False)
|
||||
|
||||
if 'password' in vm_:
|
||||
kwargs['password'] = vm_['password']
|
||||
|
|
Loading…
Add table
Reference in a new issue