Reputation: 73
I am not able to create a logic app from PowerShell with standard mode, I can be able to create consumption plan logic App. Also when I fetch logic apps under my resource group with command Get-AzResource, its only displaying logic apps with consumption plan,
Upvotes: 0
Views: 568
Reputation: 7898
How to create logic app with standard plan using PowerShell:
Azure PowerShell is not currently supported for Standard logic app processes running in single-tenant Azure Logic Apps. However, New-AzLogicapp command is used to create a logic app with the consumption plan as you already knew it.
Concerning the other issue you are dealing with,
PowerShell command Get-AzResource, its only displaying logic apps with consumption plan:
I created a new logic app with consumption plan from Portal and tried retrieving that in the below manner.
Get-Azresource -ResourceType Microsoft.Web/sites -ResourceGroupName "<resourcegroup>"
I was able to obtain the standard plan logic apps too as shown.
Upvotes: 0