Bicep: Get the Trigger URL for a Consumption Logic App

 resource logicApp 'Microsoft.Logic/workflows@2016-06-01' = {  name: logicAppName  location: logicAppLocation  identity: {... }  properties: {...  }}output id         string = logicApp.idoutput version    string = logicApp.apiVersionoutput triggerUrl string…

Continue ReadingBicep: Get the Trigger URL for a Consumption Logic App

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