我正在尝试订阅另一个资源组上存在的自定义事件网格主题。例如,如果我在资源组my-custom-topic
中有一个自定义事件网格主题publisher-group
。如何在资源组subscriber-group
中为主题创建事件网格订阅?
下面的ARM模板仅在my-custom-topic
也与我正在应用模板的资源组相同的情况下有效。
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
"contentVersion": "1.0.0.0",
"parameters": {
"eventGridSubscriptionName": {
"type": "String",
"metadata": {
"description": "The name of the Event Grid custom topic's subscription."
}
},
"location": {
"defaultValue": "[resourceGroup().location]",
"type": "String",
"metadata": {
"description": "The location in which the Event Grid resources should be deployed."
}
}
},
"resources": [
{
"type": "Microsoft.EventGrid/topics/providers/eventSubscriptions",
"apiVersion": "2018-01-01",
"name": "[concat('my-custom-topic', '/Microsoft.EventGrid/', parameters('eventGridSubscriptionName'))]",
"location": "[parameters('location')]",
"properties": {
"destination": {
"endpointType": "EventHub",
"properties": {
"resourceId": "..."
}
},
"filter": {
"includedEventTypes": [
"All"
]
}
}
}
]
}
如果我将name
更改为主题的完整路径(例如,subscriptions / xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx / resourceGroups / publisher-group / providers / Microsoft.EventGrid / topics / my-自定义主题),则模板会抱怨我细分过多
我本以为这是一个非常常见的用例,其中的主题和订阅位于不同的资源组中,但是我找不到具体的示例
如何创建一个ARM模板来订阅另一个资源组上的事件网格主题?
答案 0 :(得分:1)
这是不可能的-事件网格主题和订阅必须位于同一资源组中。
我建议创建一个单独的资源组,仅用于包含事件网格主题及其所有订阅。
从逻辑上讲,您不应将单个事件发布者视为拥有其发布到的事件网格主题,而应将主题视为许多发布者和订阅者所依赖的共享资源。