File tree 2 files changed +3
-1
lines changed
lib/puppet/provider/templates/webadministration
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ Get-WebSite | % {
20
20
'clientCertificateMapping',
21
21
'digest',
22
22
'iisClientCertificateMapping',
23
- 'windows'
23
+ 'windows',
24
+ 'forms'
24
25
)
25
26
$authenticationTypes | Foreach-Object -Begin { $info = @{} } -Process {
26
27
$p = Get-WebConfiguration -Filter "system.webserver/security/authentication/$($_)Authentication" -PSPath "IIS:\sites\$($name)"
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ Get-WebApplication | % {
26
26
clientCertificateMapping = [bool](Get-WebConfiguration -Location "${site}/${name}" -Filter "system.webserver/security/authentication/clientCertificateMappingAuthentication").enabled
27
27
iisClientCertificateMapping = [bool](Get-WebConfiguration -Location "${site}/${name}" -Filter "system.webserver/security/authentication/iisClientCertificateMappingAuthentication").enabled
28
28
windows = [bool](Get-WebConfiguration -Location "${site}/${name}" -Filter "system.webserver/security/authentication/windowsAuthentication").enabled
29
+ forms = [bool](Get-WebConfiguration -Location "${site}/${name}" -Filter "system.webserver/security/authentication/formsAuthentication").enabled
29
30
}
30
31
enabledprotocols = [string]$_.enabledProtocols
31
32
}
You can’t perform that action at this time.
0 commit comments