ps/Modules/Alkami.PowerShell.Services/Public/Get-AppTierServices.ps1

14 lines
429 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function Get-AppTierServices {
<#
.SYNOPSIS
Used to get the list of services used during things like Install\-ORBAppServer
The benefit of this function is to inject more easily for unit testing, and encapsulation
This lets us retrieve the values for console testing as well, so we can see what is configured
#>
[CmdletBinding()]
[OutputType([object[]])]
param (
)
return $global:appTierServices
}