We have an AspNetCore WebAPI and an WebApp deployed in a couple of Azure Container Instances, and need to configure the HTTPS for both. Right now (in development) we use self-sign certificates (.pfx) that are loaded on startup from a path in the container.
We are interested in using Let's Encrypt certificates but in my research I can't find a way to configure Let's Encrypt using Azure Container Instances. I can only find ways to configure Azure App Service and projects hosted in VMs.
Does anyone know of any way to do this configuration? Or some example that even if it is not identical, I can base it to make this configuration.
Thanks.