Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add user tls_options and grant options to mysql::db #1065

Merged
merged 2 commits into from
Jun 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions manifests/backup/xtrabackup.pp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
$additional_cron_args = ''
) inherits mysql::params {

package{ $xtrabackup_package_name:
ensure => $ensure,
}
ensure_packages($xtrabackup_package_name)

if $backupuser and $backuppassword {
mysql_user { "${backupuser}@localhost":
Expand Down
10 changes: 9 additions & 1 deletion manifests/db.pp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
# The user for the database you're creating.
# @param password
# The password for $user for the database you're creating.
# @param tls_options
# The tls_options for $user for the database you're creating.
# @param dbname
# The name of the database to create.
# @param charset
Expand All @@ -23,6 +25,8 @@
# The host to use as part of user@host for grants.
# @param grant
# The privileges to be granted for user@host on the database.
# @param grant_options
# The grant_options for the grant for user@host on the database.
# @param sql
# The path to the sqlfile you want to execute. This can be single file specified as string, or it can be an array of strings.
# @param enforce_sql
Expand All @@ -37,18 +41,20 @@
define mysql::db (
$user,
$password,
$tls_options = undef,
$dbname = $name,
$charset = 'utf8',
$collate = 'utf8_general_ci',
$host = 'localhost',
$grant = 'ALL',
$grant_options = undef,
Optional[Variant[Array, Hash, String]] $sql = undef,
$enforce_sql = false,
Enum['absent', 'present'] $ensure = 'present',
$import_timeout = 300,
$import_cat_cmd = 'cat',
) {
#input validation

$table = "${dbname}.*"

$sql_inputs = join([$sql], ' ')
Expand All @@ -67,6 +73,7 @@
$user_resource = {
ensure => $ensure,
password_hash => mysql::password($password),
tls_options => $tls_options,
}
ensure_resource('mysql_user', "${user}@${host}", $user_resource)

Expand All @@ -76,6 +83,7 @@
provider => 'mysql',
user => "${user}@${host}",
table => $table,
options => $grant_options,
require => [
Mysql_database[$dbname],
Mysql_user["${user}@${host}"],
Expand Down
10 changes: 10 additions & 0 deletions spec/defines/mysql_db_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@
params['dbname'] = 'real_db'
is_expected.to contain_mysql_database('real_db')
end

it 'uses tls_options for user when set' do
params['tls_options'] = ['SSL']
is_expected.to contain_mysql_user('testuser@localhost').with_tls_options(['SSL'])
end

it 'uses grant_options for grant when set' do
params['grant_options'] = ['GRANT']
is_expected.to contain_mysql_grant('testuser@localhost/test_db.*').with_options(['GRANT'])
end
end
end
end