Nov 21, 2018 3 min read

Use Let's Encrypt in an Azure Function for an Azure Web App

Use Let's Encrypt to automate SSL certificate creation for Azure Web Apps with an Azure Function v2, use Managed Service Identity

Use Let's Encrypt in an Azure Function for an Azure Web App

If you run a website, it's expected to run with SSL. In the old days buying those certificates could become costly, but since a couple of years Let's Encrypt is giving them away for free in an effort to make the web safer.

Certificates issued by Let's Encrypt are only valid for 90 days (read about their reasoning), and can only be requested with an API. I combined the following resources and tweaked it for reusability and Azure Functions v2:

That's how I ended up with a fully automated way to request and assign all my SSL certificates in Azure. It's a big list of steps to get this running, so let's start with an overview:

  1. Create a Function App v2, configure it for MSI and enable Let's Encrypt
  2. Create an Azure AD application and assign it access rights to manage your Azure Web App
  3. Create an Azure Key Vault and store the secrets
  4. Create the actual Azure Function that will request the SSL certificates

Create a Function App v2, configure it for MSI and enable Let's Encrypt

  1. Go into the Azure Portal and create an Azure Function App. It works with a consumption plan, but I reused an App Service Plan. v2 is the new default.
  2. In the Azure Function App, go into Platform Settings.
  3. Find Managed Service Identity and enable it.
  4. Open Site Extensions, click Add and find and install Azure Let's Encrypt (No Web Jobs)
  5. Restart the Function App
  6. Download the Publishing Profile, open it. Store the value of userPwd for later use.

Create an Azure AD application and assign it access rights to manage your Azure Web App

  1. Go into the Azure Portal, open Active Directory and App registrations.
  2. Click + New application registration, give it a name and a url. Select Web App / API
  3. Copy the Application ID and generate a key, store both for later use.
  4. Go to Access Control for each App Service, App Service Plan and AZure Function that requires an SSL certificate. If they are in the same Resource Group, you can assign access there instead.
  5. Add Contributor access to the Azure AD application you just registered.

Create an Azure Key Vault and store the secrets

  1. Go into the Azure Portal and create an Azure Key Vault.
  2. Under Access Policies, find the Managed Service Identity (it's named the same as your Azure Function App). Assign it Get permissions under Secrets.
  3. Under Secrets, create 3 secrets: clientSecret, userPwd, pfxPwd. As values put in the generated key from the previous step, the deployment password from the first step and you can freely choose a password for your certificate.
  4. Copy and store the url for the Key Vault.

Create the actual Azure Function that will request the SSL certificates

  1. Go into the Azure Portal and open the Azure Function App.
  2. Create a new Function, choose Timer Trigger. I named it Let's Encrypt and put 0 0 0 1 * *. This will renew my certificates on the first day of every month.
  3. Create an additional file in the Azure Function, named function.proj. Past in the code from this gist.
  4. In the run.csx file itself, paste the code from this gist. Make sure to replace the values in the lines marked with TODO.

The actual creation of the certificate is done with the following lines of code (make sure to update the host name with your own domain):

configBody.AcmeConfig.Host = "blog.yannickreekmans.be";
await CreateCertificate(configBody, functionAppName, client, log);

You can use the same Azure Function for multiple domains and App Services. Make sure to update the values accordingly. Eg. if the additional domain is for a different App Service, run it like this:

configBody.AzureEnvironment.WebAppName = "otherwebapp";
configBody.AcmeConfig.Host = "yannickreekmans.be";
await CreateCertificate(configBody, functionAppName, client, log);

Now it just needs a little tweaking to create certificates for Azure Function Apps, but that's for a different post!

Great! You’ve successfully signed up.
Welcome back! You've successfully signed in.
You've successfully subscribed to Yannick Reekmans.
Your link has expired.
Success! Check your email for magic link to sign-in.
Success! Your billing info has been updated.
Your billing was not updated.