n3wt0n / AzureWebAppSSLManager

Acquires and manages free SSL certificates for Azure Web App and Azure Functions applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Idea: Saving pfx to keyvault

egamitilps opened this issue · comments

This is exactly what i'm looking for.
An enhancement I'd love to see is saving the pfx to keyvault along with the password.

Awesome work!

Good idea, I could add a setting for it so the user can decide if saving to keyvault or not.

Thanks :)

may I ask if there are any updates on this topic as I would love to see this feature too

@hendriksteinhorst I still have plans to add that to the service, but I've been super busy and haven't had enough time to do this properly. As you can imagine it's a feature that needs to be done with the right amount of attention to be sure everything works properly.

I'm gonna do it as soon as I can.

I have done it manually recently to use the certificate in Azure Front Door. Here is what I learned:

  • Azure Front Door accepts only certificates with RSA private key (see line 145 in CertificatesHelper.cs)
  • the certificate password must be empty, otherwise Azure Front Door can't import it

I don't know the security implications of these changes as I'm no expert in certificates.