|
13 | 13 | # The user for the database you're creating.
|
14 | 14 | # @param password
|
15 | 15 | # 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. |
16 | 18 | # @param dbname
|
17 | 19 | # The name of the database to create.
|
18 | 20 | # @param charset
|
|
23 | 25 | # The host to use as part of user@host for grants.
|
24 | 26 | # @param grant
|
25 | 27 | # 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. |
26 | 30 | # @param sql
|
27 | 31 | # 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.
|
28 | 32 | # @param enforce_sql
|
|
37 | 41 | define mysql::db (
|
38 | 42 | $user,
|
39 | 43 | $password,
|
| 44 | + $tls_options = undef, |
40 | 45 | $dbname = $name,
|
41 | 46 | $charset = 'utf8',
|
42 | 47 | $collate = 'utf8_general_ci',
|
43 | 48 | $host = 'localhost',
|
44 | 49 | $grant = 'ALL',
|
| 50 | + $grant_options = undef, |
45 | 51 | Optional[Variant[Array, Hash, String]] $sql = undef,
|
46 | 52 | $enforce_sql = false,
|
47 | 53 | Enum['absent', 'present'] $ensure = 'present',
|
48 | 54 | $import_timeout = 300,
|
49 | 55 | $import_cat_cmd = 'cat',
|
50 | 56 | ) {
|
51 |
| - #input validation |
| 57 | + |
52 | 58 | $table = "${dbname}.*"
|
53 | 59 |
|
54 | 60 | $sql_inputs = join([$sql], ' ')
|
|
67 | 73 | $user_resource = {
|
68 | 74 | ensure => $ensure,
|
69 | 75 | password_hash => mysql::password($password),
|
| 76 | + tls_options => $tls_options, |
70 | 77 | }
|
71 | 78 | ensure_resource('mysql_user', "${user}@${host}", $user_resource)
|
72 | 79 |
|
|
76 | 83 | provider => 'mysql',
|
77 | 84 | user => "${user}@${host}",
|
78 | 85 | table => $table,
|
| 86 | + options => $grant_options, |
79 | 87 | require => [
|
80 | 88 | Mysql_database[$dbname],
|
81 | 89 | Mysql_user["${user}@${host}"],
|
|
0 commit comments