Puppet Class: openstack::trove::rabbit
- Defined in:
- modules/openstack/manifests/trove/rabbit.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'modules/openstack/manifests/trove/rabbit.pp', line 2
class openstack::trove::rabbit(
String[1] $username,
String[1] $password,
String[1] $guest_username,
String[1] $guest_password,
) {
rabbitmq::user { $username:
password => $password,
}
# TODO: reduce the permissions this user has
rabbitmq::user { $guest_username:
password => $guest_password,
}
}
|