Puppet Class: secure_windows::stig::v73701

Defined in:
manifests/stig/v73701.pp

Overview

V-73701 Windows Server 2016 must be configured to use FIPS-compliant algorithms for encryption, hashing, and signing.

Parameters:

  • enforced (Boolean) (defaults to: false)


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/stig/v73701.pp', line 3

class secure_windows::stig::v73701 (
  Boolean $enforced = false,
) {

  if $enforced {

    registry::value { 'v73701':
      key   => 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FIPSAlgorithmPolicy',
      value => 'Enabled',
      type  => 'dword',
      data  => '0x00000001',
    }

  }

}