Home
Ken Dale
Cancel

Retrieving All Managed Identity ObjectIds In Resource Group For Azure App Services And Azure Functions Using Azure CLI

If you’re working with Azure App Services, Azure Functions, or perhaps another Azure service that implements managed identity in the same way it can be useful to get a list of the object ids for an...

Thoughts On Debugging Durable Functions Extension Orchestrations For Azure Functions Backed By Azure Table Storage

Durable Functions is an extension for Azure Functions to help write stateful services in a stateless environment. Here’s a few thoughts I’ve compiled for debugging Durable Functions orchestrations....

Running Code On Local Computer / Localhost Only Using Azure Functions With C#

Azure Functions is a serverless hosting offering available in Microsoft Azure. While authoring code you may find a need to run code only during local development. Azure Functions provides an AZURE...

Debugging Fan-Out Operation Failures With Custom Exception Messages Using Durable Functions Extension For Azure Functions On C#

Durable Functions is an extension for Azure Functions to help write stateful services in a stateless environment. There’s an orchestration pattern named Fan out/fan in that can be helpful for conta...

Avoid Exposing Status Uri From Durable Functions Extension For Azure Functions To Untrusted Parties (It Contains A Secret Key!)

Durable Functions is an extension for Azure Functions to help write stateful services in a stateless environment. It can return helpful information, including a status uri, but this contains a secr...

IDisposable, IAsyncDisposable, and Tasks: Dispose Behavior With Tasks In C#

While working with HTTP calls that return a Stream via HttpClient’s var response = await SendAsync(request, HttpCompletionOption.ResponseHeadersRead); -> var stream = await response.Content.Read...

Retrieving Managed Identity Access Tokens For Azure Web Apps Using PowerShell Console

If you’re working with Azure Web Apps and securing between services using managed identity, formerly known as Managed Service Identity (MSI), it can be useful to retrieve an access token on behalf ...

Prevent Duplicate Invocations of Durable Functions Using Azure Functions With C#

Durable Functions is an extension for Azure Functions to help write stateful services in a stateless environment. When starting a new process, you may want to verify it isn’t already running by che...

Get Basic Information For Azure AD Object Ids Using PowerShell

Quick summary Get-AzureADObjectByObjectId -ObjectIds 00000000-0000-0000-0000-000000000000 Comma delimit for multiples. Details If you’re working with Azure you may find yourself needing to get...

Reverting Azure ARM Template Changes Using Change History And Manual ARM Deployment

I made some ARM templates changes and unintentionally removed Access Policy items from an Azure Key Vault in a (thankfully) non-production environment. Since the ARM template doesn’t have the befor...