Puppet Class: secure_windows::stig::v73461
- Defined in:
- manifests/stig/v73461.pp
Overview
This class manages: V-73461 Windows Server 2016 must be configured to audit Policy Change - Audit Policy Change successes. V-73463 Windows Server 2016 must be configured to audit Policy Change - Audit Policy Change failures.
6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/stig/v73461.pp', line 6
class secure_windows::stig::v73461 (
Boolean $enforced = false,
) {
if $enforced {
auditpol { 'Audit Policy Change':
success => 'enable',
failure => 'enable',
}
}
}
|