Azure EventGrid是否已定义出站IP地址

问题描述 投票:1回答:2

我的公司支持利用Azure EventGrid通过Webhook发送通知的产品。

我们的一位客户(明智地)希望限制他们可以通过其接收通知的IP地址的范围。

EventGrid是否具有定义的地址或可以指定的地址范围?

azure azure-eventgrid
2个回答
2
投票

EventGrid具有Event Domains功能来控制谁可以接收事件。这可能最接近您要寻找的内容。


0
投票

[如果您只是想确保eventgrid的IP已打开,则IP列在https://www.microsoft.com/en-us/download/details.aspx?id=56519处的“ Azure IP范围和服务标签”文档中。在VSCode中将其打开,然后搜索EventGrid。

{
  "name": "AzureEventGrid",
  "id": "AzureEventGrid",
  "properties": {
    "changeNumber": 1,
    "region": "",
    "platform": "Azure",
    "systemService": "AzureEventGrid",
    "addressPrefixes": [
      "13.86.56.32/27",
      "13.86.56.160/27",
      "52.149.23.160/27",
      "52.149.48.80/28",
      "52.149.48.96/27",
      "52.149.248.0/28",
      "52.149.248.64/27",
      "52.149.248.96/28",
      "52.167.21.160/27",
      "52.167.21.208/28",
      "52.167.21.224/28",
      "52.185.212.176/28",
      "52.185.212.192/28",
      "52.255.80.16/28",
      "52.255.82.160/28"
    ]
  }
© www.soinside.com 2019 - 2024. All rights reserved.