如何将 AWS RDS 安全组中的 Zapier IP 地址列入白名单

How to whitelist Zapier IP addresses in AWS RDS security group

我继承了一个 AWS RDS 实例,这是我第一个 运行 尝试管理数据世界中的这方面的事情,如果我有误解或忽略任何事情,请原谅!

我正在尝试使用 Zapier 将第 3 方应用程序连接到我们的 AWS RDS Postgresql 数据库。我在 postgres 中创建了一个新用户,并且可以毫无问题地从我的本地计算机连接这些凭据。但是,当我尝试使用相同的凭据将 Zapier 连接到我们的数据库时,它失败了。这肯定是因为我们只允许列入白名单的 IP 连接到我们的数据库。所以,我应该能够将 Zapier 的 IP 地址列入白名单,问题就解决了,是吗?

不幸的是,我无法弄清楚 哪些 IP Zapier 需要我将其列入白名单。 This article is of no use, because the "We send out database connections from the IP addresses listed here." link is dead. I can find a similar link in the MongoDB connection help page, but it links to, what I think is, every single AWS IP address

在我之前肯定有很多人能够建立这个连接,所以我错过了什么?到目前为止,Zapier 对我帮助不大。

文章中你link只有PostreSQL-Link死了,其他两个(MySQL和SQL-Server)工作。在这两种情况下,声称他们使用静态 IP 连接到您的数据库 (Source):

This is useful if you use a non-AWS host, for example: Rackspace, HostGator, Linode, DigitalOcean, etc. Zapier connections currently come from static IP addresses. Zapier will make connections to your database from the following IP address:

54.86.9.50

Important: Don't forget to do both things: open up your firewall and add the IPs to your user GRANT permissions.

IP 54.86.9.50 列在两篇 文章中,所以他们也有可能使用它来创建与 Postgres 的连接.

我会尝试将 54.86.9.50 添加到安全组并检查它是否有效。