Puppet Class: winrm::config::auth
- Defined in:
-
manifests/config/auth.pp
Summary
Configures the different authentication methods that will be accepted on the system
https://docs.microsoft.com/en-us/windows/win32/winrm/authentication-for-remote-connections
Overview
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'manifests/config/auth.pp', line 24
class winrm::config::auth (
Boolean $auth_basic_enable = $winrm::auth_basic_enable,
Boolean $auth_credssp_enable = $winrm::auth_credssp_enable,
Boolean $auth_kerberos_enable = $winrm::auth_kerberos_enable,
Boolean $auth_negotiate_enable = $winrm::auth_negotiate_enable,
) {
exec { 'Configure-Auth':
command => template('winrm/auth/auth_settings.ps1.erb'),
provider => 'powershell',
unless => template('winrm/auth/auth_settings_onlyif.ps1.erb'),
}
}
|