Azure / LogicAppsUX

https://learn.microsoft.com/azure/logic-apps
MIT License
77 stars 84 forks source link

Standard Azure Logic Apps couldn't search out any in-app triggers for workflow #5204

Open peter-zhijia-zheng opened 4 months ago

peter-zhijia-zheng commented 4 months ago

Describe the Bug with repro steps

I used below template to create&deploy the standard Azure Logic Apps, but when I create a workflow in it, and want to add a trigger, I found there is no any In-App triggers, including the Schedule In-App trigger, but in consumption/personalise Azure Logic Apps we didn't meet this problem, is there anyone knows the root cause? thanks and looking forward for the feedback.

1db8c222-b32c-47f9-a8c9-61ac108803fd

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "logicAppName": {
      "defaultValue": "myLogicAppStandard",
      "type": "String"
    },
    "storageAccountName": {
      "defaultValue": "mystandardstorageacct",
      "type": "String"
    },
    "location": {
      "defaultValue": "[resourceGroup().location]",
      "type": "String"
    },
    "hostingPlanName": {
      "defaultValue": "myWorkflowPlan",
      "type": "String"
    }
  },
  "resources": [
    {
      "type": "Microsoft.Storage/storageAccounts",
      "apiVersion": "2022-09-01",
      "name": "[parameters('storageAccountName')]",
      "location": "[parameters('location')]",
      "sku": {
        "name": "Standard_LRS"
      },
      "kind": "StorageV2",
      "properties": {
        "allowBlobPublicAccess": false,
        "allowSharedKeyAccess": false,
        "defaultToOAuthAuthentication": true,
        "minimumTlsVersion": "TLS1_2"
      }
    },
    {
      "type": "Microsoft.Web/serverfarms",
      "apiVersion": "2021-02-01",
      "name": "[parameters('hostingPlanName')]",
      "location": "[parameters('location')]",
      "sku": {
        "name": "WS1",
        "tier": "WorkflowStandard"
      },
      "properties": {
        "reserved": false,
        "targetWorkerCount": 1,
        "targetWorkerSizeId": 0
      }
    },
    {
      "type": "Microsoft.Web/sites",
      "apiVersion": "2022-03-01",
      "name": "[parameters('logicAppName')]",
      "location": "[parameters('location')]",
      "kind": "functionapp,workflowapp",
      "identity": {
        "type": "SystemAssigned"
      },
      "properties": {
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]",
        "siteConfig": {
          "appSettings": [
            {
              "name": "FUNCTIONS_EXTENSION_VERSION",
              "value": "~4"
            },
            {
              "name": "FUNCTIONS_WORKER_RUNTIME",
              "value": "dotnet"
            },
            {
              "name": "WORKFLOWS_SUBSCRIPTION_ID",
              "value": "[subscription().subscriptionId]"
            },
            {
              "name": "WORKFLOWS_RESOURCE_GROUP_NAME",
              "value": "[resourceGroup().name]"
            },
            {
              "name": "AzureWebJobsStorage",
              "value": "[concat('DefaultEndpointsProtocol=https;AccountName=',parameters('storageAccountName'),';EndpointSuffix=core.windows.net')]"
            }
          ]
        },
        "httpsOnly": true
      }
    }
  ],
  "outputs": {}
}

What type of Logic App Is this happening in?

Standard (Portal)

Are you using new designer or old designer

New Designer

Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg

Yes

Workflow JSON

No response

Screenshots or Videos

No response

Browser

edge, chrome

Additional context

No response

janiskulj commented 1 month ago

I'm experiencig the same thing, any ideas?