ps/Modules/Alkami.PowerShell.Common/Public/Select-AlkamiTeaServers.ps1
2023-05-30 22:51:22 -07:00

20 lines
418 B
PowerShell

function Select-AlkamiTeaServers {
<#
.SYNOPSIS
Filters TeamCity servers from a list of servers by hostname convention.
#>
[CmdletBinding()]
Param(
[AllowNull()]
[AllowEmptyCollection()]
[Parameter(Mandatory = $true)]
[string[]]$Servers
)
$result = ($Servers -match "\bTEA")
if ($result -eq $false) {
return $null
}
return $result
}