DSCResources/DSC_SslSettings/en-US/about_SslSettings.help.txt
.NAME
SslSettings .DESCRIPTION The SslSettings DSC resource is used to... ## Requirements * Target machine must be running Windows Server 2012 R2 or later. ## Known issues All issues are not listed here, see https://github.com/dsccommunity/WebAdministrationDsc/issues?q=is%3Aissue+is%3Aopen+in%3Atitle+SslSettings. .PARAMETER Name Key - String Name of website in which to modify the SSL Settings .PARAMETER Bindings Required - StringArray Allowed values: , Ssl, SslNegotiateCert, SslRequireCert, Ssl128 The Bindings in which to modify for the website .PARAMETER Ensure Write - String Allowed values: Present, Absent Whether the bindings should be present or absent .EXAMPLE 1 configuration Sample_SslSettings_RequireCert { param ( # Target nodes to apply the configuration [String[]] $NodeName = 'localhost' ) # Import the module that defines custom resources Import-DscResource -Module WebAdministrationDsc Node $NodeName { SslSettings SiteDefaults { Ensure = 'Present' Name = 'contoso.com' Bindings = @('Ssl', 'SslNegotiateCert', 'SslRequireCert') } } } |