I'm working on issuing a Let's Encrypt SSL certificate for my domain using Posh-ACME in PowerShell, specifically for a wildcard domain (*.mydomain.com). I have already generated a CSR, since it's shared host and going the CSR way is the only option that I have, and now need guidance on how to submit this CSR using Posh-ACME.
Steps Completed:
- Installed Posh-ACME using Install-Module -Name Posh-ACME.
- Imported the Posh-ACME module with Import-Module Posh-ACME.
- Set Let's Encrypt as the ACME server and created a new ACME account.
- Generated a CSR for *.mydomain.com.
Where I'm Stuck: I am not sure how to proceed with submitting the CSR I've generated to Let's Encrypt using Posh-ACME. Most documentation and tutorials I've found do not focus on CSR submission but rather on generating a new certificate directly.
My Question Is: Can anyone provide guidance or a method for submitting an existing CSR to Let's Encrypt using Posh-ACME in PowerShell? Are there specific cmdlets or steps in Posh-ACME for handling CSR submissions for SSL certificate issuance?
I am open to using any alternative that would get this done.