gpt4 book ai didi

azure-eventgrid - 不同资源组中自定义主题的 Azure 事件网格订阅

转载 作者:行者123 更新时间:2023-12-04 15:39:41 25 4
gpt4 key购买 nike

我正在尝试订阅不同资源组中存在的自定义事件网格主题。例如,如果我有一个自定义事件网格主题 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成为主题的完整路径(例如订阅/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx/resourceGroups/publisher-group/providers/Microsoft.EventGrid/topics/my-custom-topic)然后模板提示我也有多段

我会认为这是一个非常常见的用例,在不同的资源组中有主题和订阅,但我找不到具体的例子

如何创建 ARM 模板以订阅不同资源组上的事件网格主题?

最佳答案

这是不可能的 - 事件网格主题和订阅必须在同一个资源组中。
我建议创建一个单独的资源组,仅用于包含您的事件网格主题及其所有订阅。
从逻辑上讲,您不应将单个事件发布者视为拥有它发布到的事件网格主题 - 而是将主题视为许多发布者和订阅者所依赖的共享资源。

关于azure-eventgrid - 不同资源组中自定义主题的 Azure 事件网格订阅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58277364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com