Add keystone class.

This keystone class is intended to allow for
the configuration of nova to use keystone. It
has been seperated into its own class to allow for
the eventual implementation of other authentication services.
This commit is contained in:
Dan Bode 2012-04-01 14:26:31 -07:00
parent 69d78e74c5
commit ef17b78321

11
manifests/keystone.pp Normal file
View File

@ -0,0 +1,11 @@
# configure to use keystone
class nova_keystone(
) {
nova_config {
'use_deprecated_auth': value => false;
'auth_strategy' : value => 'keystone';
'keystone_ec2_url' : value => 'http://10.42.0.6:5000/v2.0/ec2tokens';
}
}