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:
parent
69d78e74c5
commit
ef17b78321
11
manifests/keystone.pp
Normal file
11
manifests/keystone.pp
Normal 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';
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user