ps/Modules/Alkami.PowerShell.SDK/Public/Get-KnownDeveloperHostsEntries.ps1

29 lines
1.5 KiB
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Get-KnownDeveloperHostsEntries {
<#
.SYNOPSIS
Returns a list of known developer host entries for ORB installation default webapps
#>
[CmdletBinding()]
[OutputType([string])]
param()
return @(
@{ IpAddress = "127.0.0.1"; Hostname = "AuditService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "BankService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "ContentService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "CoreService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "ExceptionService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "IP-STS"; }
@{ IpAddress = "127.0.0.1"; Hostname = "MessageCenterService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "NagConfigurationService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "NotificationService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "RP-STS"; }
@{ IpAddress = "127.0.0.1"; Hostname = "Scheduler"; }
@{ IpAddress = "127.0.0.1"; Hostname = "SecurityManagementService"; }
@{ IpAddress = "127.0.0.1"; Hostname = "STSConfiguration"; }
@{ IpAddress = "127.0.0.1"; Hostname = "redis-18620.redis.corp.alkamitech.com"; }
@{ IpAddress = "127.0.0.1"; Hostname = "ip.dev.alkamitech.com"; }
@{ IpAddress = "127.0.0.1"; Hostname = "developer.dev.alkamitech.com"; }
@{ IpAddress = "127.0.0.1"; Hostname = "admin-developer.dev.alkamitech.com"; }
)
}