
These users already have access by using the 'baremetal' account so formalizing this is better overall. This is a re-up of I31e0504f68e196b0b249b5b7b750861a752679ac Change-Id: Ic487e09ee8850c6a94c264c83593ba4a903cffa0 Depends-On: I120760d614df92b3af6dcbf5adf1e7ccd9da94ab
26 lines
809 B
Puppet
26 lines
809 B
Puppet
class openstack_project::infracloud::compute (
|
|
$nova_rabbit_password,
|
|
$neutron_rabbit_password,
|
|
$neutron_admin_password,
|
|
$ssl_cert_file_contents,
|
|
$br_name,
|
|
$controller_management_address,
|
|
$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_management_address => $controller_management_address,
|
|
controller_public_address => $controller_public_address,
|
|
}
|
|
|
|
realize (
|
|
User::Virtual::Localuser['colleen'],
|
|
User::Virtual::Localuser['rcarrillocruz'],
|
|
)
|
|
|
|
}
|