unable to create logical app.please help to solve the issue am new to azure?

raviram 21 Reputation points
2022-01-04T08:44:55.223+00:00

below is navigation steps
logical apps-->create-->resource group given as new logic-app-rg. and selected all as defaults.

got below error
{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"message":"This server farm 'ASP-logicapprg-a2fb' cannot contain Logic Apps. Logic Apps can be deployed only to 'WorkflowStandard' Sku or App Service Environments(ASE)."}]}

changed the region to east us.

unable to create logical app162182-screenshot-18.png

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,844 questions
0 comments No comments
{count} votes

Accepted answer
  1. MayankBargali-MSFT 68,476 Reputation points
    2022-01-04T10:46:52.43+00:00

    @raviram As per the error it looks like you are creating the logic app in the plan that is not supported. Only 'WorkflowStandard' Sku or App Service Environments(ASE) plans are supported. I will suggest you to recreate the logic app only with 'WorkflowStandard' or ‘ASEv3’ plans. In the below template I have defined the tier as WorkflowStandard and WS1 pricing. You can refer to Standard single tenant for pricing tier details that are supported for the standard logic app. To learn more about the Microsoft.Web/serverfarms property please refer to this document.

    {  
                "type": "Microsoft.Web/serverfarms",  
                "apiVersion": "2021-02-01",  
                "name": "[parameters('serverfarms_ASP_logicapp_961f_name')]",  
                "location": "Central US",  
                "sku": {  
                    "name": "WS1",  
                    "tier": "WorkflowStandard",  
                    "size": "WS1",  
                    "family": "WS",  
                    "capacity": 1  
                },  
                "kind": "elastic",  
                "properties": {  
                    "perSiteScaling": false,  
                    "elasticScaleEnabled": true,  
                    "maximumElasticWorkerCount": 20,  
                    "isSpot": false,  
                    "reserved": false,  
                    "isXenon": false,  
                    "hyperV": false,  
                    "targetWorkerCount": 0,  
                    "targetWorkerSizeId": 0,  
                    "zoneRedundant": false  
                }  
            }  
    
    0 comments No comments

0 additional answers

Sort by: Most helpful