I am struggling adding the Event Grid Subscriptions, event grid topics and logic apps into a single ARM template. Firstly within the Subscription I cannot reference the url a Logic App that is also being deployed:
"name": "[concat(parameters('topics_mt_x_eun_ex_rate_egt_name'), '/Microsoft.EventGrid/', parameters('subscription_name'))]",
"type": "Microsoft.EventGrid/topics/providers/eventSubscriptions",
"location": "[parameters('location')]",
"tags": "[parameters('resourceTags')]",
"apiVersion": "2018-01-01",
"properties": {
"destination": {
"endpointType": "WebHook",
"properties": {
"endpointUrl": "[listCallbackUrl(resourceId('Microsoft.Logic/workflows/triggers', parameters('TargetLogicAppName'), 'manual'), '2016-06-01').value]"
}
},
"filter": {
"includedEventTypes": [
"All"
]
}
},
"dependsOn": [
"[parameters('Topics')]",
"[parameters('TargetLogicAppName')]"
]
I receive the following error:
InvalidRequest: IpFiltering is unsupported in api version 2019-06-01.
So my main question is, how can I get this to work?
Additionally I am content with running just the above inside my main deployment template, but is it at all possible to link the Publish EventGrid action inside the main Logic App to connect to the Event Grid Topic (it requires a SAS Token as well as the topics url)?