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