Hi @T Hanif ,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
To resolve the issue, you're facing with your Azure Logic App deployment, start by checking if there are any pending operations in progress. You can do this by going to the Activity Log in the Azure Portal and ensuring there are no ongoing updates or deployments. If there is an operation in progress, wait for it to complete before retrying.
Next, check for any resource locks on your Logic App. Locks like "Read-Only" or "Delete" can prevent modifications. If locks are present, remove them. Also, ensure that no conflicting deployments are happening—if you’re using Terraform, avoid making manual changes to the Logic App or running parallel deployment processes.
Since your Logic App is deployed in an isolated VNet, verify that the network configuration, including any Network Security Groups (NSGs), is set up correctly and that there are no issues blocking the Logic App's connectivity.
If everything looks good, try refreshing and redeploying the Logic App in Terraform by running terraform refresh
and terraform apply
. Finally, if the problem persists, consider restarting the Logic App from the Azure Portal to clear any stuck operations.
I hope this helps! Let me know if you have any further questions.
Thank you!