Puppet Class: secure_windows::stig::v73317
- Defined in:
- manifests/stig/v73317.pp
Overview
This class manages: V-73317 The maximum password age must be configured to 60 days or less.
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/stig/v73317.pp', line 4
class secure_windows::stig::v73317 (
Boolean $enforced = false,
) {
if $enforced {
local_security_policy { 'Maximum password age':
ensure => 'present',
policy_setting => 'MaximumPasswordAge',
policy_type => 'System Access',
policy_value => '60',
}
}
}
|