Files
puppet-cloudkitty/manifests/db/postgresql.pp
Xingchao Yu 78f52ecfac This is the initial commit for puppet-cloudkitty.
It has been automatically generated using cookiecutter[1] and msync[2].

[1] https://github.com/openstack/puppet-openstack-cookiecutter
[2] https://github.com/openstack/puppet-modulesync-configs

Change-Id: I43e8be43f6c77d55ff0c5879344020942eb9cf43
2016-10-20 10:53:32 +08:00

56 lines
1.2 KiB
Puppet

# == Class: cloudkitty::db::postgresql
#
# Class that configures postgresql for cloudkitty
# Requires the Puppetlabs postgresql module.
#
# === Parameters
#
# [*password*]
# (Required) Password to connect to the database.
#
# [*dbname*]
# (Optional) Name of the database.
# Defaults to 'cloudkitty'.
#
# [*user*]
# (Optional) User to connect to the database.
# Defaults to 'cloudkitty'.
#
# [*encoding*]
# (Optional) The charset to use for the database.
# Default to undef.
#
# [*privileges*]
# (Optional) Privileges given to the database user.
# Default to 'ALL'
#
# == Dependencies
#
# == Examples
#
# == Authors
#
# == Copyright
#
class cloudkitty::db::postgresql(
$password,
$dbname = 'cloudkitty',
$user = 'cloudkitty',
$encoding = undef,
$privileges = 'ALL',
) {
Class['cloudkitty::db::postgresql'] -> Service<| title == 'cloudkitty' |>
::openstacklib::db::postgresql { 'cloudkitty':
password_hash => postgresql_password($user, $password),
dbname => $dbname,
user => $user,
encoding => $encoding,
privileges => $privileges,
}
::Openstacklib::Db::Postgresql['cloudkitty'] ~> Exec<| title == 'cloudkitty-manage db_sync' |>
}