Control your Azure Functions securely through Azure API Management

In some scenarios, you need to start stop your Azure resources based on external events.  API’s are a good way to expose this “control plane” functionality, as it allows seamless integration within your enterprise.  This blog showcases this by creating an API that allows to start/stop Azure Functions on demand.  It’s a good practice to expose your API’s through an API Gateway, that’s why I let Azure API Management handle the job in an easy and secure manner.

  • In Azure API Management, you first have to create a new API.

afc1

  • Create a new operation, which I called in my example “Start Invoicing”

afc2

<inbound>
   <base />
   <set-backend-service base-url="https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{functionAppName}" />
   <rewrite-uri template="/start?api-version=2016-08-01" copy-unmatched-params="false" />
   <authentication-managed-identity resource="https://management.azure.com/" ignore-error="false" />
</inbound>
  • The authentication will only work if you enable Managed Service Identity on your API Management instance.

afc3

  • To ensure that your API Management instance has the rights to start/stop the Azure Function, you have to navigate to the Access control tab of the Function App..

afc4

  • Over here, you can give the Managed Service Identity of your API Management instance the required access rights to start/stop your Azure Function

afc5

  • Try out the API operation…

afc6

  • …and see that your Azure Function started successfully!

afc7

This is just a simple example of how you can use Azure API Management’s Managed Service Identity to authenticate against the Azure Management API.  This approach allows really nice scenarios.  All of this is done in a secure manner, if you don’t forget to secure your API Management frontend.

Cheers
Toon

ABOUT

MEET THE YOUR AZURE COACH TEAM

Your Azure Coach is specialized in organizing Azure trainings that are infused with real-life experience. All our coaches are active consultants, who are very passionate and who love to share their Azure expertise with you.