Andrew Jay
Andrew Jay

Reputation: 1464

How to programmatically clone a Logic App

Ideally, using the "Get-AzWebApp" and "New-AzWebApp" would be perfectly ideal, but these commands only work for Web apps, not other types of apps - like Logic Apps.

Are there complimentary commands to these that can clone an existing Logic App?

I need to use Powershell and not use Azure RM.

For reference, I found these commands at this link, noting that it uses the above Az commands which don't work for Logic Apps.

Upvotes: 0

Views: 418

Answers (1)

Derek Li
Derek Li

Reputation: 3111

There are Logic App-equivalent Get-AzLogicApp and New-AzLogicApp.

Upvotes: 3

Related Questions