Puppet Class: secure_windows::stig::v73489

Defined in:
manifests/stig/v73489.pp

Overview

This class manages: V-73489 Windows Server 2016 must be configured to audit System - System Integrity successes. V-73491 Windows Server 2016 must be configured to audit System - System Integrity failures.

Parameters:

  • enforced (Boolean) (defaults to: false)


6
7
8
9
10
11
12
13
14
15
# File 'manifests/stig/v73489.pp', line 6

class secure_windows::stig::v73489 (
  Boolean $enforced = false,
) {
  if $enforced {
    auditpol { 'System Integrity':
      success => 'enable',
      failure => 'enable',
    }
  }
}