你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
使用托管标识进行事件传递
本文介绍如何对Azure 事件网格系统主题、自定义主题或域使用托管服务标识。 使用它将事件转发到受支持的目标,如服务总线队列和主题、事件中心和存储帐户。
必备条件
向系统主题、自定义主题或域分配系统分配标识或用户分配标识。
- 对于自定义主题和域,请参阅为自定义主题和域启用托管标识。
- 对于系统主题,请参阅为系统主题启用托管标识
在目标(例如,服务总线队列)上将标识添加到相应角色(例如,服务总线数据发送方)。 有关详细步骤,请参阅向目标上的 Azure 角色添加标识
创建使用标识的事件订阅
拥有具有托管标识的事件网格自定义主题或系统主题或域并将标识添加到目标上的相应角色后,即可创建使用该标识的订阅。
使用 Azure 门户
创建事件订阅时,你将在“终结点详细信息”部分看到一个选项,用于启用该终结点的系统分配标识或用户分配标识。
以下示例说明如何在通过服务总线队列创建事件订阅目标时启用系统分配的标识。
还可以在“附加功能”选项卡上启用将系统分配的标识用于死信的功能。
可以在创建事件订阅后在事件订阅上启用托管标识。 在事件订阅的“事件订阅”页面,切换到“其他功能”选项卡以查看相关选项。 还可以在此页上为死信启用标识。
如果为主题启用了用户分配的标识,将在“托管标识类型”下拉列表中看到已启用用户分配的标识选项。 如果你为“托管标识类型”选择“已分配用户”,随后便可选择向其传送事件的用户分配标识。
使用 Azure CLI - 服务总线队列
本部分介绍如何使用 Azure CLI 启用系统分配的标识,以将事件传送到服务总线队列。 标识必须是“Azure 服务总线数据发送方”角色的成员。 它还必须是用于死信的存储帐户上的“存储 Blob 数据参与者”角色的成员。
定义变量
首先,指定要在 CLI 命令中使用的以下变量的值。
subid="<AZURE SUBSCRIPTION ID>"
rg = "<RESOURCE GROUP of EVENT GRID CUSTOM TOPIC>"
topicname = "<EVENT GRID TOPIC NAME>"
# get the service bus queue resource id
queueid=$(az servicebus queue show --namespace-name <SERVICE BUS NAMESPACE NAME> --name <QUEUE NAME> --resource-group <RESOURCE GROUP NAME> --query id --output tsv)
sb_esname = "<Specify a name for the event subscription>"
使用托管标识创建用于传送的事件订阅
此示例命令为事件网格自定义主题创建事件订阅,该主题的终结点类型设置为服务总线队列。
az eventgrid event-subscription create
--source-resource-id /subscriptions/$subid/resourceGroups/$rg/providers/Microsoft.EventGrid/topics/$topicname
--delivery-identity-endpoint-type servicebusqueue
--delivery-identity systemassigned
--delivery-identity-endpoint $queueid
-n $sb_esname
使用托管标识创建用于传送和死信的事件订阅
此示例命令为事件网格自定义主题创建事件订阅,该主题的终结点类型设置为服务总线队列。 它还指定将系统托管标识用于死信。
storageid=$(az storage account show --name demoStorage --resource-group gridResourceGroup --query id --output tsv)
deadletterendpoint="$storageid/blobServices/default/containers/<BLOB CONTAINER NAME>"
az eventgrid event-subscription create
--source-resource-id /subscriptions/$subid/resourceGroups/$rg/providers/Microsoft.EventGrid/topics/$topicname
--delivery-identity-endpoint-type servicebusqueue
--delivery-identity systemassigned
--delivery-identity-endpoint $queueid
--deadletter-identity-endpoint $deadletterendpoint
--deadletter-identity systemassigned
-n $sb_esnameq
使用 Azure CLI - 事件中心
本部分介绍如何使用 Azure CLI 启用系统分配的标识,以将事件传送到事件中心。 该标识必须是“Azure 事件中心数据发送方”角色的成员。 它还必须是用于死信的存储帐户上的“存储 Blob 数据参与者”角色的成员。
定义变量
subid="<AZURE SUBSCRIPTION ID>"
rg = "<RESOURCE GROUP of EVENT GRID CUSTOM TOPIC>"
topicname = "<EVENT GRID CUSTOM TOPIC NAME>"
hubid=$(az eventhubs eventhub show --name <EVENT HUB NAME> --namespace-name <NAMESPACE NAME> --resource-group <RESOURCE GROUP NAME> --query id --output tsv)
eh_esname = "<SPECIFY EVENT SUBSCRIPTION NAME>"
使用托管标识创建用于传送的事件订阅
此示例命令为事件网格自定义主题创建事件订阅,该主题的终结点类型设置为 事件中心。
az eventgrid event-subscription create
--source-resource-id /subscriptions/$subid/resourceGroups/$rg/providers/Microsoft.EventGrid/topics/$topicname
--delivery-identity-endpoint-type eventhub
--delivery-identity systemassigned
--delivery-identity-endpoint $hubid
-n $sbq_esname
使用托管标识创建用于传送和死信的事件订阅
此示例命令为事件网格自定义主题创建事件订阅,该主题的终结点类型设置为 事件中心。 它还指定将系统托管标识用于死信。
storageid=$(az storage account show --name demoStorage --resource-group gridResourceGroup --query id --output tsv)
deadletterendpoint="$storageid/blobServices/default/containers/<BLOB CONTAINER NAME>"
az eventgrid event-subscription create
--source-resource-id /subscriptions/$subid/resourceGroups/$rg/providers/Microsoft.EventGrid/topics/$topicname
--delivery-identity-endpoint-type servicebusqueue
--delivery-identity systemassigned
--delivery-identity-endpoint $hubid
--deadletter-identity-endpoint $eh_deadletterendpoint
--deadletter-identity systemassigned
-n $eh_esname
使用 Azure CLI - Azure 存储队列
本部分介绍如何使用 Azure CLI 启用系统分配的标识,以将事件传送到 Azure 存储队列。 该标识必须是存储帐户上“存储队列数据消息发送方”角色的成员。 它还必须是用于死信的存储帐户上的“存储 Blob 数据参与者”角色的成员。
定义变量
subid="<AZURE SUBSCRIPTION ID>"
rg = "<RESOURCE GROUP of EVENT GRID CUSTOM TOPIC>"
topicname = "<EVENT GRID CUSTOM TOPIC NAME>"
# get the storage account resource id
storageid=$(az storage account show --name <STORAGE ACCOUNT NAME> --resource-group <RESOURCE GROUP NAME> --query id --output tsv)
# build the resource id for the queue
queueid="$storageid/queueservices/default/queues/<QUEUE NAME>"
sa_esname = "<SPECIFY EVENT SUBSCRIPTION NAME>"
使用托管标识创建用于传送的事件订阅
az eventgrid event-subscription create
--source-resource-id /subscriptions/$subid/resourceGroups/$rg/providers/Microsoft.EventGrid/topics/$topicname
--delivery-identity-endpoint-type storagequeue
--delivery-identity systemassigned
--delivery-identity-endpoint $queueid
-n $sa_esname
使用托管标识创建用于传送和死信的事件订阅
storageid=$(az storage account show --name demoStorage --resource-group gridResourceGroup --query id --output tsv)
deadletterendpoint="$storageid/blobServices/default/containers/<BLOB CONTAINER NAME>"
az eventgrid event-subscription create
--source-resource-id /subscriptions/$subid/resourceGroups/$rg/providers/Microsoft.EventGrid/topics/$topicname
--delivery-identity-endpoint-type storagequeue
--delivery-identity systemassigned
--delivery-identity-endpoint $queueid
--deadletter-identity-endpoint $deadletterendpoint
--deadletter-identity systemassigned
-n $sa_esname
专用终结点
目前,无法使用专用终结点传递事件。 也就是说,如果有严格的网络隔离要求,即已传递事件流量不得离开专用 IP 空间,则不支持使用专用终结点传递事件的功能。
但是,如果你的要求要求使用加密通道和发送方的已知标识(在本例中为事件网格)使用公共 IP 空间发送事件,则可以使用Azure 事件网格自定义主题或具有托管标识的域将事件传送到事件中心、服务总线或Azure 存储服务,如本文中所示。 然后,可以使用部署在虚拟网络上的 Azure Functions 或 webhook 中配置的专用链接来请求事件。 请参阅教程:使用 Azure Functions 连接到专用终结点。
在此配置下,流量通过公共 IP/internet 从事件网格传递到事件中心、服务总线或 Azure 存储,但可以对通道进行加密,并使用事件网格的托管标识。 如果将部署到虚拟网络的 Azure Functions 或 webhook 配置为通过专用链接使用事件中心、服务总线或 Azure 存储,则流量的那一部分显然将留在 Azure 内。
后续步骤
若要了解托管标识,请参阅什么是 Azure 资源托管标识。