puppet-murano/manifests/db/mysql_cfapi.pp
Tobias Urdin 52f9b4c5f7 Use validate_legacy
This changes all the puppet 3 validate_* functions
to use the validate_legacy function.

The validate_legacy function has been available since
about three years but require Puppet >= 4.4.0 and since
there is Puppet 4.10.12 as latest we should assume people
are running a fairly new Puppet 4 version.

This is the first step to then remove all validate function
calls and use proper types for parameter as described in spec [1].

[1] https://review.openstack.org/#/c/568929/

Change-Id: I4da049ff59fd71403f4d00cfad8c5f56041e1e6e
2019-02-23 23:23:09 +01:00

64 lines
1.5 KiB
Puppet

# == Class: murano::db::mysql_cfapi
#
# The murano::db::mysql_cfapi class creates a MySQL database for murano_cfapi.
# It must be used on the MySQL server.
#
# === Parameters
#
# [*password*]
# (Required) Password to connect to the database.
#
# [*dbname*]
# (Optional) Name of the database.
# Defaults to 'murano_cfapi'.
#
# [*user*]
# (Optional) User to connect to the database.
# Defaults to 'murano_cfapi'.
#
# [*host*]
# (Optional) The default source host user is allowed to connect from.
# Defaults to '127.0.0.1'
#
# [*allowed_hosts*]
# (Optional) Other hosts the user is allowed to connect from.
# Defaults to 'undef'.
#
# [*charset*]
# (Optional) The database charset.
# Defaults to 'utf8'.
#
# [*collate*]
# (Optional) Charset collate of murano_cfapi database.
# Defaults to 'utf8_general_ci'.
#
class murano::db::mysql_cfapi(
$password,
$dbname = 'murano_cfapi',
$user = 'murano_cfapi',
$host = '127.0.0.1',
$allowed_hosts = undef,
$charset = 'utf8',
$collate = 'utf8_general_ci',
) {
include ::murano::deps
validate_legacy(String, 'validate_string', $password)
::openstacklib::db::mysql{ 'murano_cfapi':
user => $user,
password_hash => mysql::password($password),
dbname => $dbname,
host => $host,
charset => $charset,
collate => $collate,
allowed_hosts => $allowed_hosts,
}
Anchor['murano::db::begin']
~> Class['murano::db::mysql_cfapi']
~> Anchor['murano::db::end']
}