You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -776,6 +776,24 @@ iis_site {'mysite'
776
776
}
777
777
```
778
778
779
+
##### `authenticationinfo`
780
+
781
+
Enable and disable authentication schemas. The available schemas are: anonymous, basic, clientCertificateMapping, digest, iisClientCertificateMapping, windows.
782
+
783
+
###### Example
784
+
785
+
```
786
+
iis_site { 'test_site':
787
+
ensure => 'started',
788
+
physicalpath => 'C:\\inetpub\\tmp',
789
+
applicationpool => 'DefaultAppPool',
790
+
authenticationinfo => {
791
+
'basic' => true,
792
+
'anonymous' => false,
793
+
},
794
+
}
795
+
```
796
+
779
797
### iis_virtual_directory
780
798
781
799
Allows creation of a new IIS Virtual Directory and configuration of virtual directory parameters.
desc'Enable and disable authentication schemas. Note: some schemas require additional Windows features to be installed, for example windows authentication. This type does not ensure a given feature is installed before attempting to configure it.'
0 commit comments