puppet-trove/manifests/db/postgresql.pp
Takashi Kajinami 1f273d3b4e replace validate_legacy with proper data types
the validate_legacy function is marked for deprecation in
v9.0.0 from puppetlabs-stdlib.

This also adds validations about some boolean parameters.

Change-Id: I57e0321eab18b66c00e364bb3b4346bb06591286
2023-06-21 10:22:59 +09:00

49 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(
String[1] $password,
$dbname = 'trove',
$user = 'trove',
$encoding = undef,
$privileges = 'ALL',
) {
include trove::deps
::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']
}