puppet-heat/manifests/db/postgresql.pp
Takashi Kajinami 46de7b4f07 Stop using absolute names for defined resource types
Since Puppet 4, names are always absolute. We already replaced usage of
absolute names for class inclusion, so can do the same for defined
resource types.

Change-Id: Ibc6b0cf016c0d14b6e0aa42fa23b03db33f66920
2025-02-18 02:01:50 +09:00

49 lines
1009 B
Puppet

# == Class: heat::db::postgresql
#
# Class that configures postgresql for heat
# Requires the Puppetlabs postgresql module.
#
# === Parameters
#
# [*password*]
# (Required) Password to connect to the database.
#
# [*dbname*]
# (Optional) Name of the database.
# Defaults to 'heat'.
#
# [*user*]
# (Optional) User to connect to the database.
# Defaults to 'heat'.
#
# [*encoding*]
# (Optional) The charset to use for the database.
# Default to undef.
#
# [*privileges*]
# (Optional) Privileges given to the database user.
# Default to 'ALL'
#
class heat::db::postgresql(
$password,
$dbname = 'heat',
$user = 'heat',
$encoding = undef,
$privileges = 'ALL',
) {
include heat::deps
openstacklib::db::postgresql { 'heat':
password => $password,
dbname => $dbname,
user => $user,
encoding => $encoding,
privileges => $privileges,
}
Anchor['heat::db::begin']
~> Class['heat::db::postgresql']
~> Anchor['heat::db::end']
}