Reputation: 135
Is there any way where we can update the workflows dynamically while calling a Child logic app as:
What i want to achieve is as below, either using Properties, Variables anything which updates the workflow at runtime, i tried to use as below :
Upvotes: 2
Views: 2031
Reputation: 1811
Unfortunately, this isn't supported. There is a feature request which I believe will address this as well that you could up vote for it to gain more traction.
As for a workaround, instead of using the Workflow Action, you could simply use the HTTP Action to trigger your other Logic Apps.
You can use the Workflows - List Callback Url ARM REST API to fetch the URL of your Logic App to call. Using Managed Identity, you can securely fetch the Trigger URLs from ARM and dynamically call other Logic Apps.
Upvotes: 4