Examples/cOctopusServerGuestAuthentication.ps1
# Enables guest authentication on the specified Octopus Server instance # please see https://github.com/OctopusDeploy/OctopusDSC/blob/master/README-cOctopusServerGuestAuthentication.md # for all available options Configuration SampleConfig { Import-DscResource -Module OctopusDSC Node "localhost" { cOctopusServerGuestAuthentication "Enable Guest Authentication" { InstanceName = "OctopusServer" Enabled = $true } } } |