Examples/Resources/SPAlternateUrl/1-CreateAlternateUrl.ps1

<#
.EXAMPLE
    This example shows how to add a new alternate URL to a specific web application
#>


    Configuration Example 
    {
        param(
            [Parameter(Mandatory = $true)]
            [PSCredential]
            $SetupAccount
        )
        Import-DscResource -ModuleName SharePointDsc

        node localhost {
            SPAlternateUrl CentralAdminAAM
            {
                WebAppUrl            = "http://sharepoint1:9999"
                Zone                 = "Intranet"
                Url                  = "https://admin.sharepoint.contoso.com"
                PsDscRunAsCredential = $SetupAccount
            }
        }
    }