jeffhollan / LogicAppTemplateCreator

Script to convert Logic Apps into templates for deployment
MIT License
143 stars 74 forks source link

Workflow to ARM template #138

Open atroiano-glue opened 1 year ago

atroiano-glue commented 1 year ago

Hi,

I'm currently trying to convert a workflow.json (simple code view from Consumption Logic App) to a template.json file. The reason why I'm doing this is to bypass the authentication step within Azure DevOps when acquiring the token and running Get-LogicAppTemplate. For this reason, I'm using the following code:

`trigger:

pool: vmImage: windows-latest

steps:

This is working correctly, however I'm wandering whether I could use also the Get-LogicAppTemplate command in your module to convert the workflow object into template.json.

Is it possible? Thank you.