ba66290b7e
It needed to be added, because vms were not booting with an error on that key being absent. Change-Id: I26e7f6a4b8226787bf76f9fdb8a2b2ccc8f2cbda
20 lines
687 B
Puppet
20 lines
687 B
Puppet
class openstack_project::infracloud::compute (
|
|
$nova_rabbit_password,
|
|
$neutron_rabbit_password,
|
|
$neutron_admin_password,
|
|
$ssl_key_file_contents,
|
|
$ssl_cert_file_contents,
|
|
$br_name,
|
|
$controller_public_address,
|
|
) {
|
|
class { '::infracloud::compute':
|
|
nova_rabbit_password => $nova_rabbit_password,
|
|
neutron_rabbit_password => $neutron_rabbit_password,
|
|
neutron_admin_password => $neutron_admin_password,
|
|
ssl_key_file_contents => $ssl_key_file_contents,
|
|
ssl_cert_file_contents => $ssl_cert_file_contents,
|
|
br_name => $br_name,
|
|
controller_public_address => $controller_public_address,
|
|
}
|
|
}
|