Puppet Class: secure_windows::stig::v73793

Defined in:
manifests/stig/v73793.pp

Overview

This class manages: V-73793 The Manage auditing and security log user right must only be assigned to the Administrators group.

Parameters:

  • enforced (Boolean) (defaults to: false)


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

class secure_windows::stig::v73793 (
  Boolean $enforced = false,
) {
  if $enforced {
    local_security_policy { 'Manage auditing and security log':
      ensure         => 'present',
      policy_setting => 'SeSecurityPrivilege',
      policy_type    => 'Privilege Rights',
      policy_value   => '*S-1-5-32-544',
    }
  }
}