Category: Azure Functions

  • Calling API Management from Azure Function using Managed Identities

    One of the solutions I am consulting on today is securing a number of APIs with OAuth with client credential flow, using Azure Active Directory as the identity provider. Those APIs are exposed via Azure API Management, which makes the validation of the access tokens provided as simple as injecting a policy at a product,…

  • Azure Functions with a Static Outbound IP Address

    “So to complete our configuration we just need your outbound static IP…” This is something that pops up again and again, specially if you work integrating legacy systems, like banks, government agencies or other older systems that requires a static IP Address to add to firewall inbound rules. In the past I had to use…

  • MS Build Recap – The AIS Edition

    This year’s MS Build was very different – we all know that. But for most of us, me included, was the first opportunity to join the event officially. And what event it was. Ran across three time zone, with a mix of live sessions, Teams Live events and smaller Teams events, like focus groups, which…

  • Omitting Empty Elements on JSON Payloads

    I am working on a Logic Apps project where the client API validates the elements before saving, and is not expecting null values to come through. For example, in the payload below: It doesn’t expect the data like showed above (which is fair enough), but also don’t like “AlternateEmail”: null. Instead it expects the AlternateEmail…