Deploy Azure Durable Function with Zero Downtime

RequirementTo deploy a new version of an Azure Durable Function using Terraform to a Function App with zero downtimeRelease PipelineThe production deployment is triggered when a modification to the main…

Continue ReadingDeploy Azure Durable Function with Zero Downtime

Connect to Key Vault from a Local Azure Function Instance

I was having an issue debugging an Azure Function locally.  The start routine loaded the Key Vault secrets into config to be used later:var secretClient = new SecretClient(    new Uri($"https://{keyVault.KeyVaultName}.vault.azure.net/"), …

Continue ReadingConnect to Key Vault from a Local Azure Function Instance