Apps/Get-HashicorpConsul.ps1

function Get-HashicorpConsul {
    <#
        .SYNOPSIS
            Get the current versions and download URLs for Hashicorp Consul.

        .NOTES
            Author: Aaron Parker
            Twitter: @stealthpuppy
    #>

    [OutputType([System.Management.Automation.PSObject])]
    [CmdletBinding(SupportsShouldProcess = $false)]
    param (
        [Parameter(Mandatory = $false, Position = 0)]
        [ValidateNotNullOrEmpty()]
        [System.Management.Automation.PSObject]
        $res = (Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1])
    )

    # Pass the repo releases API URL and return a formatted object
    $Output = Get-HashicorpApp -res $res
    Write-Output -InputObject $Output
}