An Azure service that automates the access and use of data across clouds without writing code.
Hi @Kate
Thank you for reaching out to Microsoft Q&A
The behavior you are seeing is by Design.
Only 1 consumption Logic app workflow can be created in Consumption based Logic app and Edit option is not available just Logic App Designer is available, refer below:
Check if you have at least the Contributor role on the Logic app to check Logic app Designer > Workflow > And edit the workflow.
Cross check if the Logic app is enabled in the Overview page:
As a workaround you can use Visual Studio Code
According to this Document: https://learn.microsoft.com/en-us/azure/logic-apps/manage-logic-apps-visual-studio-code?tabs=consumption#edit-a-workflow In Visual Studio Code, you can edit a deployed Consumption workflow using only the code view editor. If you open a deployed Consumption workflow using the designer, the workflow opens in read-only mode.
Use Visual Studio Code to edit the Consumption Logic App Workflow
For Consumption Logic Apps, use the Azure Logic Apps (Consumption) extension in Visual Studio Code and edit the workflow JSON from there.
Steps:
Refer: https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-logicapps
- Install Visual Studio Code.
- Install the Azure Logic Apps (Consumption) extension.
- Sign in to Azure from Visual Studio Code.
- Open the Azure pane.
- Expand Logic Apps (Consumption).
- Expand the affected subscription.
- Locate the affected Logic App.
- Right select the Logic App and choose Open in Editor.
- Visual Studio Code opens the workflow JSON file named similar to:
<logic-app-name>.logicapp.json
- Make the required workflow changes.
- Save the file.
- When Visual Studio Code prompts to upload the changes to Azure, select Upload.
This is the documented editing path for deployed Consumption workflows in Visual Studio Code. The designer view in Visual Studio Code is read-only for deployed Consumption workflows, but Open in Editor allows editing the workflow JSON.
and click on Yes for was this answer helpful. And, if you have any further query do let us know.