Change-Id: I021bd17564f1a20591d3aac8a254f4976e14e681
| ... | ... |
@@ -40,6 +40,12 @@ HORIZON_CONFIG = {
|
| 40 | 40 |
'user_home': 'openstack_dashboard.views.user_home', |
| 41 | 41 |
} |
| 42 | 42 |
|
| 43 |
+# TODO(tres): Remove these once Keystone has an API to identify auth backend. |
|
| 44 |
+OPENSTACK_KEYSTONE_BACKEND = {
|
|
| 45 |
+ 'name': 'native', |
|
| 46 |
+ 'can_edit_user': True |
|
| 47 |
+} |
|
| 48 |
+ |
|
| 43 | 49 |
OPENSTACK_HOST = "127.0.0.1" |
| 44 | 50 |
OPENSTACK_KEYSTONE_URL = "http://%s:5000/v2.0" % OPENSTACK_HOST |
| 45 | 51 |
# FIXME: this is only needed until keystone fixes its GET /tenants call |