In Azure portal, there's an option to configure Logic App to be called from other Logic Apps only.
I want to configure this option in ARM template for my Logic App to be triggered from a specific Logic App only.
I can configure "Specific IP ranges" option by adding below to my Logic App ARM template:
"accessControl":{
"triggers":{
"allowedCallerIpAddresses":[
{
"addressRange":"<IPAddress>"
},
{
"addressRange":"<IPAddress>"
}
]
}
}
So I have tried similar approach for "Only other Logic Apps" but it doesn't seem to be working.
"accessControl":{
"triggers":{
"allowedCallers":[
"/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Logic/workflows/<CallerLogicApp>"
]
}
}