Examples/cOctopusServerAzureADAuthentication.ps1
Configuration SampleConfig { Import-DscResource -Module OctopusDSC Node "localhost" { cOctopusServerAzureADAuthentication "Enable AzureAD authentication" { InstanceName = "OctopusServer" Enabled = $true Issuer = "https://login.microsoftonline.com/b91ebf6a-84be-4c6f-97f3-32a1d0a11c8a" ClientId = "0272262a-b31d-4acf-8891-56e96d302018" } } } |