Examples/cOctopusServerOktaAuthentication.ps1
Configuration SampleConfig { Import-DscResource -Module OctopusDSC Node "localhost" { cOctopusServerOktaAuthentication "Enable Okta authentication" { InstanceName = "OctopusServer" Enabled = $true Issuer = "https://dev-258250.oktapreview.com" ClientId = "752nx5basdskrsbqansE" } } } |