Puppet Class: secure_windows::stig::v73611
- Defined in:
- manifests/stig/v73611.pp
Overview
This class managed V-73611 Domain controllers must have a PKI server certificate.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/stig/v73611.pp', line 3
class secure_windows::stig::v73611 (
Boolean $enforced = false,
) {
if $enforced {
if $facts['windows_server_type'] == 'windowsdc' {
if ($facts['pki_certs'] == 'no certs') {
notify { 'v73611':
message => 'Not in compliance with DoD STIG V-73611. The Domain Controller does not have a PKI server certificate.',
loglevel => warning,
}
}
}
}
}
|