Identity Config - Role Tests Parity
1. Added Openstack Keystone Admin (OS-KSADM) parameter to Identity Config.py 2. Needed OS-KSADM as a config parameter to list all roles. Change-Id: I9d3f157fd32853f8f275736bf94575456d4f4bc6
This commit is contained in:
parent
4683757904
commit
9c3806200a
@ -47,3 +47,11 @@ class IdentityTokenConfig(ConfigSectionInterface):
|
||||
@property
|
||||
def authentication_endpoint(self):
|
||||
return self.get("authentication_endpoint")
|
||||
|
||||
|
||||
class IdentityExtensionConfig(ConfigSectionInterface):
|
||||
SECTION_NAME = 'extension_api'
|
||||
|
||||
@property
|
||||
def openstack_keystone_admin(self):
|
||||
return self.get("openstack_keystone_admin")
|
||||
|
@ -19,3 +19,6 @@ username=admin
|
||||
password=password
|
||||
tenant_name=admin
|
||||
authentication_endpoint=http://111.111.111.111:1000
|
||||
|
||||
[extension_api]
|
||||
openstack_keystone_admin=OS-KADM
|
||||
|
Loading…
Reference in New Issue
Block a user