ps/Modules/Cole.PowerShell.Developer/TODO/Get-TeamNameForREDx.ps1
2023-05-30 22:51:22 -07:00

19 lines
443 B
PowerShell

function Get-TeamNameForREDx {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[Alias('Name')]
$EnvironmentName
)
$logLead = (Get-LogLeadName)
$lookupTable = @{
"red1" = @{ TeamNames = @(""); }
}
if ($null -eq $response) {
Write-Warning "$logLead : There is no such environment [$EnvironmentName], it doesn't appear ..."
}
}