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
        }
    }
}