Newer
Older
class iaas::profile::database-client(
$servers = undef,
$main_address = undef,
$galera_password = undef,
) {
# Install fake MySQL server
# class { '::mysql::server':
# root_password => $galera_password,
# host => $mysql_host,
# Install MySQL client
class { 'mysql::client':
# host => $main_address,
# root_password => $galera_password,
} -> anchor { 'database-service': }
}