ps/Modules/Alkami.PowerShell.Common/Public/Get-SecretServerUri.ps1

13 lines
213 B
PowerShell
Raw Permalink Normal View History

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