【发布时间】:2019-10-09 19:21:39
【问题描述】:
我正在使用一个关键的云代工厂来托管我的应用程序。我需要将应用程序安全组(ASG)中的 slack-webhooks URL IP 列入白名单。目前,我已经硬编码了 3 个 IP。
{
"description": "Slack-ip-1",
"destination": "13.226.19.152",
"protocol": "tcp",
"ports": "443"
},
{
"description": "Slack-ip-2",
"destination": "13.249.130.154",
"protocol": "tcp",
"ports": "443"
},
{
"description": "Slack-ip-3",
"destination": "13.227.32.151",
"protocol": "tcp",
"ports": "443"
}
但 Slack 使用 AWS,这些 IP 很可能会频繁更改。我可以将 hooks.slack.com 之类的域列入白名单,而不是硬编码的 ips?
【问题讨论】:
标签: cloud-foundry