|
232 | 232 | # |
233 | 233 | # $ruby_load_paths:: List of ruby paths |
234 | 234 | # |
235 | | -# $ca_client_whitelist:: The whitelist of client certificates that |
| 235 | +# $ca_client_allowlist:: The allowlist of client certificates that |
236 | 236 | # can query the certificate-status endpoint |
237 | 237 | # Defaults to [ '127.0.0.1', '::1', $::ipaddress ] |
238 | 238 | # |
239 | 239 | # $custom_trusted_oid_mapping:: A hash of custom trusted oid mappings. |
240 | 240 | # Example: { 1.3.6.1.4.1.34380.1.2.1.1 => { shortname => 'myshortname' } } |
241 | 241 | # |
242 | | -# $admin_api_whitelist:: The whitelist of clients that |
| 242 | +# $admin_api_allowlist:: The allowlist of clients that |
243 | 243 | # can query the puppet-admin-api endpoint |
244 | 244 | # Defaults to [ '127.0.0.1', '::1', $::ipaddress ] |
245 | 245 | # |
|
335 | 335 | # a static_file_content API request for the contents of a file resource that |
336 | 336 | # has a source attribute with a puppet:/// URI value. |
337 | 337 | # |
338 | | -# $jolokia_metrics_whitelist:: The whitelist of clients that |
| 338 | +# $jolokia_metrics_allowlist:: The allowlist of clients that |
339 | 339 | # can query the jolokia /metrics/v2 endpoint |
340 | 340 | class puppet::server ( |
341 | 341 | Variant[Boolean, Stdlib::Absolutepath] $autosign = $puppet::autosign, |
|
344 | 344 | Optional[String] $autosign_content = $puppet::autosign_content, |
345 | 345 | Optional[String] $autosign_source = $puppet::autosign_source, |
346 | 346 | String $hiera_config = $puppet::hiera_config, |
347 | | - Array[String] $admin_api_whitelist = $puppet::server_admin_api_whitelist, |
| 347 | + Array[String] $admin_api_allowlist = $puppet::server_admin_api_allowlist, |
348 | 348 | Boolean $manage_user = $puppet::server_manage_user, |
349 | 349 | String $user = $puppet::server_user, |
350 | 350 | String $group = $puppet::server_group, |
|
358 | 358 | Optional[Boolean] $crl_enable = $puppet::server_crl_enable, |
359 | 359 | Boolean $ca_auth_required = $puppet::server_ca_auth_required, |
360 | 360 | Boolean $ca_client_self_delete = $puppet::server_ca_client_self_delete, |
361 | | - Array[String] $ca_client_whitelist = $puppet::server_ca_client_whitelist, |
| 361 | + Array[String] $ca_client_allowlist = $puppet::server_ca_client_allowlist, |
362 | 362 | Optional[Puppet::Custom_trusted_oid_mapping] $custom_trusted_oid_mapping = $puppet::server_custom_trusted_oid_mapping, |
363 | 363 | Boolean $http = $puppet::server_http, |
364 | 364 | Stdlib::Port $http_port = $puppet::server_http_port, |
|
457 | 457 | Optional[Integer[1]] $max_open_files = $puppet::server_max_open_files, |
458 | 458 | Optional[Stdlib::Absolutepath] $versioned_code_id = $puppet::server_versioned_code_id, |
459 | 459 | Optional[Stdlib::Absolutepath] $versioned_code_content = $puppet::server_versioned_code_content, |
460 | | - Array[String[1]] $jolokia_metrics_whitelist = $puppet::server_jolokia_metrics_whitelist, |
| 460 | + Array[String[1]] $jolokia_metrics_allowlist = $puppet::server_jolokia_metrics_allowlist, |
461 | 461 | ) { |
462 | 462 | $cadir = "${puppetserver_dir}/ca" |
463 | 463 |
|
|
0 commit comments