Public/Deploying/Deploy-EdenServiceInfrastructure.ps1

function Deploy-EdenServiceInfrastructure {
    <#
        .SYNOPSIS
        Deploying infrastructure.

        .DESCRIPTION
        Deploying infrastructure. by calling the local './Eden/Deploying/Deploy-ServiceInfrastructure.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Deploying/Deploy-ServiceInfrastructure" `
        -SettingsName $SettingsName `
        -CommandGroup "Deploying" `
        -Message "Deploying infrastructure." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-dpi `
    -Value Deploy-EdenServiceInfrastructure `
    -Force