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,
Asked
Active
Viewed 75 times
0
-
AFAIK, No it is not possible, community can provide on creating standard logic app using on arm or bicep deployment – RithwikBojja Jul 13 '23 at 05:15
1 Answers
0
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.

Jahnavi
- 3,076
- 1
- 3
- 10