Use default role of member for horizon

Default role configured for horizon is set to _member_ but this
is not a role which is configured in keystone. Change to use the
default role of 'member'.

Closes-Bug: #1861371
Change-Id: I08c171cb58ac669c0425274ebb9ceeb17bb9b3f9
This commit is contained in:
Billy Olsen 2021-12-03 13:02:56 -07:00
parent 2425d7822d
commit 4123da81ef
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Tweaks to make this run nicely in a snap.
# TODO: turn this off once everything is working nicely.
DEBUG = True
DEBUG = False
# Set our webroot.
WEBROOT = '/'
@ -24,7 +24,7 @@ AVAILABLE_THEMES = [
# Point us at keystone.
OPENSTACK_HOST = "10.20.20.1"
OPENSTACK_KEYSTONE_URL = "https://%s:5000/v3" % OPENSTACK_HOST
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "_member_"
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "member"
# Turn off external access for now. (This should be turned on once we
# have hooks for setting a non default password.)