File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
lib/puppet/provider/templates/webadministration Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ Get-WebSite | % {
2020 'clientCertificateMapping',
2121 'digest',
2222 'iisClientCertificateMapping',
23- 'windows'
23+ 'windows',
24+ 'forms'
2425 )
2526 $authenticationTypes | Foreach-Object -Begin { $info = @{} } -Process {
2627 $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 | % {
2626 clientCertificateMapping = [bool](Get-WebConfiguration -Location "${site}/${name}" -Filter "system.webserver/security/authentication/clientCertificateMappingAuthentication").enabled
2727 iisClientCertificateMapping = [bool](Get-WebConfiguration -Location "${site}/${name}" -Filter "system.webserver/security/authentication/iisClientCertificateMappingAuthentication").enabled
2828 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
2930 }
3031 enabledprotocols = [string]$_.enabledProtocols
3132 }
You can’t perform that action at this time.
0 commit comments