Change default auth type to keystone

Change-Id: Icf6c9f7f4f302450e162627d9666ab97c2be8b75
Depends-On: Icf8ccc2b802315cb77898f363bcf9cf89cb46e8e
This commit is contained in:
Jay Dobies 2015-05-11 15:16:52 -04:00
parent f06e9d80e8
commit e3e82f2a98
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
#
# Method to use for auth: noauth or keystone. (string value)
#auth_strategy=noauth
#auth_strategy=keystone
#

View File

@ -25,7 +25,7 @@ from tuskar.api import renderers
auth_opts = [
cfg.StrOpt(
'auth_strategy',
default='noauth',
default='keystone',
help='Method to use for auth: noauth or keystone.'),
]