Add admin_password parameter setting

Now ,we actually use admin_token to set keystone password for the
admin user, but admin_token will be removed in a later release,
so add admin_password parameter setting.

Change-Id: I33999503d42fd0405fddc5dce906f1518ac1e732
Closes-Bug: #1644158
This commit is contained in:
ZhongShengping 2016-11-23 18:08:12 +08:00
parent 284d69e82b
commit 61a762d2cf

View File

@ -54,7 +54,8 @@ class openstack_integration::keystone (
class { '::keystone':
debug => true,
database_connection => 'mysql+pymysql://keystone:keystone@127.0.0.1/keystone',
admin_token => 'a_big_secret',
admin_token => 'a_big_token',
admin_password => 'a_big_secret',
enabled => true,
service_name => 'httpd',
default_domain => $default_domain,