Puppet Class: winrm
- Inherits:
- winrm::params
- Defined in:
- manifests/init.pp
Summary
This will configure and manage winrm and its configration for remote accessOverview
to Windows systems
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'manifests/init.pp', line 48
class winrm (
Boolean $allow_unencrypted_enable = $winrm::params::allow_unencrypted_enable,
Boolean $auth_basic_enable = $winrm::params::auth_basic_enable,
Boolean $auth_credssp_enable = $winrm::params::auth_credssp_enable,
Boolean $auth_kerberos_enable = $winrm::params::auth_kerberos_enable,
Boolean $auth_negotiate_enable = $winrm::params::auth_negotiate_enable,
String $certificate_hash = $winrm::params::certificate_hash,
Integer $cert_validity_days = $winrm::params::cert_validity_days,
String $cert_common_name = $winrm::params::cert_common_name,
Enum['AllSigned', 'Bypass', 'RemoteSigned', 'Restricted', 'Undefined', 'Unrestricted']
$execution_policy = $winrm::params::execution_policy,
Boolean $http_listener_enable = $winrm::params::http_listener_enable,
Boolean $https_listener_enable = $winrm::params::https_listener_enable,
Boolean $local_account_token_filter_policy_enable = $winrm::params::local_account_token_filter_policy_enable,
Boolean $skip_network_profile_check = $winrm::params::skip_network_profile_check,
) inherits winrm::params {
contain winrm::service
contain winrm::config
Class['winrm::service'] -> Class['winrm::config']
}
|