Puppet Class: winrm::params
- Inherited by:
-
winrm
- Defined in:
- manifests/params.pp
Summary
Parameter defaultsOverview
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'manifests/params.pp', line 47
class winrm::params {
$allow_unencrypted_enable = false
$auth_basic_enable = false
$auth_credssp_enable = false
$auth_kerberos_enable = true
$auth_negotiate_enable = true
$certificate_hash = ''
$cert_validity_days = 1095
$cert_common_name = $trusted['certname']
$execution_policy = 'RemoteSigned'
$http_listener_enable = false
$https_listener_enable = true
$local_account_token_filter_policy_enable = true
$skip_network_profile_check = false
}
|