From 49eefc85977a81cd34f383884c8fc20eca6e675a Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 10 Feb 2012 13:11:04 -0500 Subject: [PATCH] Update api-paste.ini with new auth_token settings. Update api-paste.ini with new 'admin_user' and 'admin_password' settings for the keystone auth_token middleware. By default username and password are options commented out. Fixes LP bug #930310. Change-Id: I04f91df5641d377d52c9578cade131bce5bfd4a4 --- etc/nova/api-paste.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/etc/nova/api-paste.ini b/etc/nova/api-paste.ini index fe11b1d41f60..861bd3d579ae 100644 --- a/etc/nova/api-paste.ini +++ b/etc/nova/api-paste.ini @@ -150,5 +150,8 @@ auth_host = 127.0.0.1 auth_port = 35357 auth_protocol = http auth_uri = http://127.0.0.1:5000/ -# NOTE(vish): you will have to replace the value below with an actual admin token +# NOTE: you will have to replace the values below with an actual token +# or user:password combination. +# admin_user = %SERVICE_USER% +# admin_password = %SERVICE_PASSWORD% admin_token = %SERVICE_TOKEN%