Remove service_ and admin_token.

- Remove cache = swift.cache as well from swift config as not needed as
  well.

Change-Id: I39f0b7ed48e6ee8926cdc011a46fdd2d01880a89
diff --git a/files/swift/proxy-server.conf b/files/swift/proxy-server.conf
index e80c1d5..1627af0 100644
--- a/files/swift/proxy-server.conf
+++ b/files/swift/proxy-server.conf
@@ -19,6 +19,8 @@
 paste.filter_factory = keystone.middleware.swift_auth:filter_factory
 operator_roles = Member,admin
 
+# NOTE(chmou): s3token middleware is not updated yet to use only
+# username and password.
 [filter:s3token]
 paste.filter_factory = keystone.middleware.s3_token:filter_factory
 service_port = %KEYSTONE_SERVICE_PORT%
@@ -29,21 +31,15 @@
 auth_token = %SERVICE_TOKEN%
 admin_token = %SERVICE_TOKEN%
 
-[filter:tokenauth]
+[filter:authtoken]
 paste.filter_factory = keystone.middleware.auth_token:filter_factory
-# FIXME(dtroyer): remove these service_* entries after auth_token is updated
-service_port = %KEYSTONE_SERVICE_PORT%
-service_host = %KEYSTONE_SERVICE_HOST%
-auth_port = %KEYSTONE_AUTH_PORT%
 auth_host = %KEYSTONE_AUTH_HOST%
+auth_port = %KEYSTONE_AUTH_PORT%
 auth_protocol = %KEYSTONE_AUTH_PROTOCOL%
-auth_token = %SERVICE_TOKEN%
-# FIXME(dtroyer): remove admin_token after auth_token is updated
-admin_token = %SERVICE_TOKEN%
+auth_uri = %KEYSTONE_SERVICE_PROTOCOL%://%KEYSTONE_SERVICE_HOST%:%KEYSTONE_SERVICE_PORT%/
 admin_tenant_name = %SERVICE_TENANT_NAME%
 admin_user = %SERVICE_USERNAME%
 admin_password = %SERVICE_PASSWORD%
-cache = swift.cache
 
 [filter:swift3]
 use = egg:swift#swift3