
Avoid using the private management address for rabbitmq, which was the only service using this address, and instead use the public address with SSL for security. Change-Id: I6a00fed66dc8f3202ff31b6905011cfd95b528b8 Depends-On: I5a25a5e4aa70db66db2d9331d7f5e4ac8b785002
18 lines
600 B
Puppet
18 lines
600 B
Puppet
class openstack_project::infracloud::compute (
|
|
$nova_rabbit_password,
|
|
$neutron_rabbit_password,
|
|
$neutron_admin_password,
|
|
$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_cert_file_contents => $ssl_cert_file_contents,
|
|
br_name => $br_name,
|
|
controller_public_address => $controller_public_address,
|
|
}
|
|
}
|