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