8a733cddad
... and migrate it to openstacklib so that all logics about database configuration are implemented in one common place. Depends-on: https://review.opendev.org/#/c/728595/ Change-Id: I952e990e1f56d6e0226eac25397ab3062074551f
51 lines
1.0 KiB
Puppet
51 lines
1.0 KiB
Puppet
# == Class: trove::db::postgresql
|
|
#
|
|
# Class that configures postgresql for trove
|
|
# Requires the Puppetlabs postgresql module.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*password*]
|
|
# (Required) Password to connect to the database.
|
|
#
|
|
# [*dbname*]
|
|
# (Optional) Name of the database.
|
|
# Defaults to 'trove'.
|
|
#
|
|
# [*user*]
|
|
# (Optional) User to connect to the database.
|
|
# Defaults to 'trove'.
|
|
#
|
|
# [*encoding*]
|
|
# (Optional) The charset to use for the database.
|
|
# Default to undef.
|
|
#
|
|
# [*privileges*]
|
|
# (Optional) Privileges given to the database user.
|
|
# Default to 'ALL'
|
|
#
|
|
class trove::db::postgresql(
|
|
$password,
|
|
$dbname = 'trove',
|
|
$user = 'trove',
|
|
$encoding = undef,
|
|
$privileges = 'ALL',
|
|
) {
|
|
|
|
include trove::deps
|
|
|
|
validate_legacy(String, 'validate_string', $password)
|
|
|
|
::openstacklib::db::postgresql { 'trove':
|
|
password => $password,
|
|
dbname => $dbname,
|
|
user => $user,
|
|
encoding => $encoding,
|
|
privileges => $privileges,
|
|
}
|
|
|
|
Anchor['trove::db::begin']
|
|
~> Class['trove::db::postgresql']
|
|
~> Anchor['trove::db::end']
|
|
}
|