Skip to content

Commit 6d02b5b

Browse files
authored
Allow IP address ranges (#362)
1 parent 00c54ff commit 6d02b5b

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

snippets/general-shared-text/couchbase.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; pic
1111
allowfullscreen
1212
></iframe>
1313

14+
import AllowIPAddressRanges from '/snippets/general-shared-text/ip-address-ranges.mdx';
15+
1416
For Couchbase Capella, you will need:
1517

1618
- A Couchbase Capella account. [Create an account](https://docs.couchbase.com/cloud/get-started/create-account.html).
1719
- A Couchbase Capella cluster. [Create a cluster](https://docs.couchbase.com/cloud/clusters/create-database.html).
1820
- A [bucket, scope, and collection](https://docs.couchbase.com/cloud/clusters/data-service/about-buckets-scopes-collections.html).
1921
- A cluster connection string. [Learn how](https://docs.couchbase.com/cloud/get-started/connect.html).
20-
- Incoming IP address allowance. [Learn how](https://docs.couchbase.com/cloud/clusters/allow-ip-address.html).
2122
- A username and password. [Learn how](https://docs.couchbase.com/cloud/clusters/manage-database-users.html).
22-
23+
- Incoming IP address allowance. [Learn how](https://docs.couchbase.com/cloud/clusters/allow-ip-address.html).
24+
25+
<AllowIPAddressRanges />
26+
2327
For a local Couchbase server, you will need:
2428

2529
- Installation of a local Couchbase server. [Learn how](https://docs.couchbase.com/server/current/getting-started/start-here.html).
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
To get Unstructured's IP address ranges, go to
2+
[https://assets.p6m.u10d.net/publicitems/ip-prefixes.json](https://assets.p6m.u10d.net/publicitems/ip-prefixes.json)
3+
and allow all of the `ip_prefix` fields' values that are listed.
4+
5+
<Note>These IP address ranges are subject to change. You can always find the latest ones in the preceding file.</Note>

snippets/general-shared-text/mongodb.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@ allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; pic
1010
allowfullscreen
1111
></iframe>
1212

13+
import AllowIPAddressRanges from '/snippets/general-shared-text/ip-address-ranges.mdx';
14+
1315
- A MongoDB Atlas account. [Create an account](https://www.mongodb.com/cloud/atlas/register).
1416
- A MongoDB Atlas cluster. [Create a cluster](https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster).
1517
- The cluster must be reachable from your application environment. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#network-and-firewall-requirements).
16-
- The cluster must be configured to use your IP address. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#ip-access-list).
18+
- The cluster must be configured to allow IP address. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#ip-access-list).
19+
20+
<AllowIPAddressRanges />
21+
1722
- The cluster must have at least one database. [Create a database](https://www.mongodb.com/docs/compass/current/databases/#create-a-database).
1823
- The database must have at least one user, and that user must have sufficient access to the database. [Create a database user](https://www.mongodb.com/docs/atlas/security-add-mongodb-users/#add-database-users). [Give the user database access](https://www.mongodb.com/docs/manual/core/authorization/).
1924
- The database must have at least one collection. [Create a collection](https://www.mongodb.com/docs/compass/current/collections/#create-a-collection).

snippets/general-shared-text/postgresql.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,17 @@ allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; pic
1010
allowfullscreen
1111
></iframe>
1212

13+
import AllowIPAddressRanges from '/snippets/general-shared-text/ip-address-ranges.mdx';
14+
1315
- A PostgreSQL instance. [Install PostgreSQL](https://www.postgresql.org/docs/current/tutorial-install.html).
1416
- The host name and port number for the instance. These values are in the `postgresql.conf` file's `listen_addresses` and `port` settings. This file should be on the same machine as the instance. These values might also already be set as environment variables named `PGHOST` and `PGPORT` on the same machine as the instance.
17+
- Depending on your network security requirements, you might need to allow access to your instance only from specific IP addresses.
18+
19+
<AllowIPAddressRanges />
20+
21+
To learn how to allow these IP address ranges, see your PostgreSQL provider's documentation, for example with
22+
[Amazon RDS for PostgreSQL](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.RDSSecurityGroups.html).
23+
1524
- A database in the instance. [Create a database](https://www.postgresql.org/docs/current/tutorial-createdb.html).
1625
- A table in the database. [Create a table](https://www.postgresql.org/docs/current/tutorial-table.html).
1726

0 commit comments

Comments
 (0)