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

13 lines
213 B
PowerShell

function Get-SecretServerUri {
<#
.SYNOPSIS
Get the base URI of the secret server.
#>
[CmdletBinding()]
[OutputType([System.String])]
Param()
return "https://alkami.secretservercloud.com";
}