0

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,

  • 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 Answers1

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.

enter image description here

Get-Azresource -ResourceType Microsoft.Web/sites -ResourceGroupName "<resourcegroup>"

I was able to obtain the standard plan logic apps too as shown.

enter image description here

Jahnavi
  • 3,076
  • 1
  • 3
  • 10