mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
cleanup whitespace, default to None to be consistent with profile
This commit is contained in:
parent
f4adfe98c0
commit
9770f56f04
1 changed files with 1 additions and 2 deletions
|
@ -17,7 +17,6 @@ Inspired by the S3 and Nova modules
|
|||
# or
|
||||
keystone.auth_key: 203802934809284k2j34lkj2l3kj43k
|
||||
|
||||
|
||||
If configuration for multiple OpenStack accounts is required, they can be
|
||||
set up as different configuration profiles:
|
||||
For example::
|
||||
|
@ -85,7 +84,7 @@ def _auth(profile=None):
|
|||
os_auth_system = credentials.get('keystone.os_auth_system', None)
|
||||
else:
|
||||
user = __salt__['config.option']('keystone.user')
|
||||
password = __salt__['config.option']('keystone.password')
|
||||
password = __salt__['config.option']('keystone.password', None)
|
||||
tenant = __salt__['config.option']('keystone.tenant')
|
||||
auth_url = __salt__['config.option']('keystone.auth_url')
|
||||
auth_version = __salt__['config.option']('keystone.auth_version')
|
||||
|
|
Loading…
Add table
Reference in a new issue