Tag Archives: azure

Working around Terraform’s Azure inequities – Part 2: Azure Shared Private Links

In this post we’ll go over how to work around Terraform to both deploy a shared private link between two resources (Azure AI Search & Azure OpenAI) and then automatically approve it. Shared Private Links (SPLs) are a way for two Azure resources to communicate over a Private Endpoint (PE), which routes traffic over an… Read More »

Working around Terraform’s Azure inequities – Part 1: Azure AI Search

It’s no secret to those who know me that I really dislike Terraform. It’s not because of the technology or the concept, though, but rather because of its execution at a project level. As a funded company, it does a piss poor job at keeping up to date – it’s clearly gotten “too big for… Read More »

Microsoft Dev Box – Make it your own

Recently we started deploying Dev Box to various divisions in the company, so I gave it a shot. Aside from being your typical VM-in-the-cloud, Dev Box offered a couple of interesting bonuses:

Make Serverless Music – Orchestrate your workflow with Azure [Part 4 – Durable Functions]

The last in the series, a walk through on taking our problem statement and implementing it with the new abstraction from the Azure Functions team, Durable Functions

Make Serverless Music – Orchestrate your workflow with Azure [Part 3 – Azure Functions]

Create a simple workflow orchestration using Azure Functions, executed both sequentially and in parallel

Make Serverless Music – Orchestrate your workflow with Azure [Part 2 – Logic Apps]

A quick walkthrough on taking the Flow created in Part 1 and upgrading to Azure’s workflow orchestration offering: Logic Apps

Creating an XML <-> JSON Converter in Azure Functions

A walkthrough of creating an Azure Function to convert XML to JSON and vice-versa, including pitfalls and gotchyas of returning XML from Azure Functions

Azure and Alexa, creating conversation with ease

A quick walkthrough on creating an Alexa Skill backed by Azure Functions

Publishing to an Event Grid topic from .Net

Here’s a quick helper class to make publishing to a custom topic in an Event Grid instance a one-line operation.

Locally debugging an Azure Function triggered by Azure Event Grid

Event Grid subscriptions point to an https endpoint. When using Azure Functions as the subscriber, how can you locally debug your events?