jeffhollan / LogicAppTemplateCreator

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

Document usage instructions with azure-cli (instead of armclient) #63

Open ascott18 opened 4 years ago

ascott18 commented 4 years ago

Its possible (and in fact fairly simple) to use this module with Azure CLI instead of armclient:

Assuming you're already signed in with the Azure CLI (az login):

Get-LogicAppTemplate -Token (az account get-access-token | ConvertFrom-Json).accessToken -LogicApp ... <other parameters>

Documenting this in this issue for posterity, and also with the idea it could be added to the README as well.

MLogdberg commented 4 years ago

Nice addition! I will test that out and add it!