|
25 | 25 | $database_username = $puppetdb::params::database_username, |
26 | 26 | $database_password = $puppetdb::params::database_password, |
27 | 27 | $database_name = $puppetdb::params::database_name, |
28 | | - $database_ssl = $puppetdb::params::database_ssl, |
29 | 28 | $jdbc_ssl_properties = $puppetdb::params::jdbc_ssl_properties, |
30 | 29 | $database_validate = $puppetdb::params::database_validate, |
31 | 30 | $database_embedded_path = $puppetdb::params::database_embedded_path, |
|
48 | 47 | $read_database_username = $puppetdb::params::read_database_username, |
49 | 48 | $read_database_password = $puppetdb::params::read_database_password, |
50 | 49 | $read_database_name = $puppetdb::params::read_database_name, |
51 | | - $read_database_ssl = $puppetdb::params::read_database_ssl, |
52 | 50 | $read_database_jdbc_ssl_properties = $puppetdb::params::read_database_jdbc_ssl_properties, |
53 | 51 | $read_database_validate = $puppetdb::params::read_database_validate, |
54 | 52 | $read_log_slow_statements = $puppetdb::params::read_log_slow_statements, |
|
72 | 70 | $read_database_max_pool_size = $puppetdb::params::read_database_max_pool_size, |
73 | 71 | ) inherits puppetdb::params { |
74 | 72 |
|
75 | | - # deprecation warnings |
76 | | - if $database_ssl { |
77 | | - warning('$database_ssl is deprecated and will be removed in the next major release. Please use $jdbc_ssl_properties = "?ssl=true" instead.') |
78 | | - } |
79 | | - |
80 | | - if $read_database_ssl { |
81 | | - warning('$read_database_ssl is deprecated and will be removed in the next major release. Please use $read_database_jdbc_ssl_properties = "?ssl=true" instead.') |
82 | | - } |
83 | | - |
84 | 73 | # Apply necessary suffix if zero is specified. |
85 | 74 | # Can we drop this in the next major release? |
86 | 75 | if $node_ttl == '0' { |
|
169 | 158 | database_username => $database_username, |
170 | 159 | database_password => $database_password, |
171 | 160 | database_name => $database_name, |
172 | | - database_ssl => $database_ssl, |
173 | 161 | database_max_pool_size => $database_max_pool_size, |
174 | 162 | jdbc_ssl_properties => $jdbc_ssl_properties, |
175 | 163 | database_validate => $database_validate, |
|
195 | 183 | database_username => $read_database_username, |
196 | 184 | database_password => $read_database_password, |
197 | 185 | database_name => $read_database_name, |
198 | | - database_ssl => $read_database_ssl, |
199 | 186 | jdbc_ssl_properties => $read_database_jdbc_ssl_properties, |
200 | 187 | database_validate => $read_database_validate, |
201 | 188 | log_slow_statements => $read_log_slow_statements, |
|
0 commit comments