Skip to content

Commit 497f7b2

Browse files
committed
Add user tls_options and grant options to mysql::db
1 parent b8e3772 commit 497f7b2

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

manifests/db.pp

+9-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# The user for the database you're creating.
1414
# @param password
1515
# The password for $user for the database you're creating.
16+
# @param tls_options
17+
# The tls_options for $user for the database you're creating.
1618
# @param dbname
1719
# The name of the database to create.
1820
# @param charset
@@ -23,6 +25,8 @@
2325
# The host to use as part of user@host for grants.
2426
# @param grant
2527
# The privileges to be granted for user@host on the database.
28+
# @param grant_options
29+
# The grant_options for the grant for user@host on the database.
2630
# @param sql
2731
# 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.
2832
# @param enforce_sql
@@ -37,18 +41,20 @@
3741
define mysql::db (
3842
$user,
3943
$password,
44+
$tls_options = undef,
4045
$dbname = $name,
4146
$charset = 'utf8',
4247
$collate = 'utf8_general_ci',
4348
$host = 'localhost',
4449
$grant = 'ALL',
50+
$grant_options = undef,
4551
Optional[Variant[Array, Hash, String]] $sql = undef,
4652
$enforce_sql = false,
4753
Enum['absent', 'present'] $ensure = 'present',
4854
$import_timeout = 300,
4955
$import_cat_cmd = 'cat',
5056
) {
51-
#input validation
57+
5258
$table = "${dbname}.*"
5359

5460
$sql_inputs = join([$sql], ' ')
@@ -67,6 +73,7 @@
6773
$user_resource = {
6874
ensure => $ensure,
6975
password_hash => mysql::password($password),
76+
tls_options => $tls_options,
7077
}
7178
ensure_resource('mysql_user', "${user}@${host}", $user_resource)
7279

@@ -76,6 +83,7 @@
7683
provider => 'mysql',
7784
user => "${user}@${host}",
7885
table => $table,
86+
options => $grant_options,
7987
require => [
8088
Mysql_database[$dbname],
8189
Mysql_user["${user}@${host}"],

spec/defines/mysql_db_spec.rb

+10
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,16 @@
7070
params['dbname'] = 'real_db'
7171
is_expected.to contain_mysql_database('real_db')
7272
end
73+
74+
it 'uses tls_options for user when set' do
75+
params['tls_options'] = ['SSL']
76+
is_expected.to contain_mysql_user('testuser@localhost').with_tls_options(['SSL'])
77+
end
78+
79+
it 'uses grant_options for grant when set' do
80+
params['grant_options'] = ['GRANT']
81+
is_expected.to contain_mysql_grant('testuser@localhost/test_db.*').with_options(['GRANT'])
82+
end
7383
end
7484
end
7585
end

0 commit comments

Comments
 (0)