How to pass file as parameter from Azure logic apps and receive it in Azure function?
Tag : azure , By : John R
Date : March 29 2020, 07:55 AM
I hope this helps . Given that the function will be receiving a JSON payload, a couple options are:
|
Tag : rest , By : Peter Leung
Date : March 29 2020, 07:55 AM
seems to work fine This is not currently supported by the SOAP to REST WSDL generated custom connectors for SOAP. You need indeed to either escape to APIM or you need to form the request payloads via LIQUID action then use the HTTP request action's advanced option to specify the cookie.
|
Is there a way to secure an Azure Function that will only be called from a specific Azure Logic App?
Date : March 29 2020, 07:55 AM
it should still fix some issue Firstly, even though using keys might be convenient, I see that official documentation advises against using keys to secure function endpoint in production scenarios. "appRoles": [
{
"allowedMemberTypes": [
"Application"
],
"displayName": "Can invoke my function",
"id": "fc803414-3c61-4ebc-a5e5-cd1675c14bbb",
"isEnabled": true,
"description": "Apps that have this role have the ability to invoke my Azure function",
"value": "MyFunctionValidClient"
}]
New-AzureADServiceAppRoleAssignment -ObjectId <logicappmsi.ObjectId> -PrincipalId <logicappmsi.ObjectId> -Id "fc803414-3c61-4ebc-a5e5-cd1675c14bbb" -ResourceId <yourfunctionaadapp.ObjectId>
|
How do you pass parameters to Azure Logic Apps Liquid Connector for JSON-JSON transformation?
Date : March 29 2020, 07:55 AM
will be helpful for those in need There's no way to specifically 'pass parameters' to a Liquid template because Liquid does not support that construct. However, you can easily inject a Parameters object into the source JSON using the Compose Action. Then you access them like any other value.
|
Azure logic apps : Setting Workflow name dynamically to call a existing logic app(Nested Logic app)
Tag : json , By : firebasket
Date : September 14 2020, 06:00 PM
I wish this help you 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.
|