.universal/endpoints.ps1
|
$endpoint = @{ Url = '/certificates' Description = "Let's Encrypt management API" Method = @('GET','POST') Module ='PowerShellUniversal.Apps.LetsEncrypt' Command = 'Invoke-LetsEncryptApi' Environment = 'PowerShell 7' Authentication = $false Timeout = 180 } New-PSUEndpoint @endpoint |