You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: D1 now supports jurisdictional restrictions.
3
+
description: D1 now has the capability to set jurisdictional restrictions on database creation. This restricts the location to run and store the d1 database.
4
+
products:
5
+
- d1
6
+
- workers
7
+
date: 2025-09-11
8
+
---
9
+
10
+
You can now set a [jurisdiction](/d1/configuration/data-location/) when creating a D1 database. Note that if a jurisdiction restriction and a location hint are both provided, the jurisdiction takes precedence and the location hint is ignored.
Copy file name to clipboardExpand all lines: src/content/docs/d1/configuration/data-location.mdx
+60-1Lines changed: 60 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,62 @@ Learn how the location of data stored in D1 is determined, including where the l
13
13
14
14
By default, D1 will automatically create your primary database instance in a location close to where you issued the request to create a database. In most cases this allows D1 to choose the optimal location for your database on your behalf.
15
15
16
+
## Restrict D1 Databases to a jurisdiction
17
+
18
+
Jurisdictions are used to create D1 databases that only run and store data within a region to comply with local regulations such as the [GDPR](https://gdpr-info.eu/) or [FedRAMP](https://blog.cloudflare.com/cloudflare-achieves-fedramp-authorization/).
19
+
20
+
Workers may still access the database constrained to a jurisdiction from anywhere in the world. The jurisdiction constraint only controls where the database itself runs and persists data. Consider using [Regional Services](/data-localization/regional-services/) to control the regions from which Cloudflare responds to requests.
21
+
22
+
### Supported locations
23
+
24
+
| Parameter | Location |
25
+
| --------- | ------------------------------ |
26
+
| eu | The European Union |
27
+
| fedramp | FedRAMP-compliant data centers |
28
+
29
+
### Set jurisdiction via the Cloudflare dashboard
30
+
31
+
1. In the Cloudflare dashboard, go to the **D1 SQL Database** page.
32
+
33
+
<DashButtonurl="/?to=/:account/workers/d1" />
34
+
35
+
2. Select **Create Database**.
36
+
3. Enter a name for the database.
37
+
4. Under **Data location**, select **Specify jurisdiction** and choose a jurisdiction from the list.
38
+
5. Select **Create** to complete the database creation process.
39
+
40
+
### Using jurisdictions from Workers
41
+
42
+
The example below shows how to create an R2 bucket in the `eu` jurisdiction using Wrangler
43
+
44
+
```sh
45
+
npx wrangler@latest d1 create d1-with-jurisdiction --jurisdiction eu
46
+
```
47
+
48
+
### Using jurisdictions from the REST API
49
+
50
+
```curl
51
+
curl -X POST "https://api.cloudflare.com/client/v4/accounts/<account_id>/d1/database" \
Note that jurisdiction restrictions can only be set on database creation. If a jurisdiction and a location hint are both provided, the jurisdiction takes precedence and the location hint is ignored.
70
+
:::
71
+
16
72
## Provide a location hint
17
73
18
74
Location hint is an optional parameter you can provide to indicate your desired geographical location for your primary database instance.
@@ -51,6 +107,7 @@ To provide a location hint when creating a database via the dashboard:
51
107
1. In the Cloudflare dashboard, go to the **D1** page.
52
108
53
109
<DashButtonurl="/?to=/:account/workers/d1" />
110
+
54
111
2. Select **Create database**.
55
112
3. Provide a database name and an optional **Location**.
56
113
4. Select **Create** to create your database.
@@ -78,4 +135,6 @@ With read replication enabled, D1 creates and distributes read-only copies of th
78
135
79
136
When using D1 read replication, D1 automatically creates a read replica in [every available region](/d1/configuration/data-location#available-location-hints), including the region where the primary database instance is located.
80
137
81
-
Refer to [D1 read replication](/d1/best-practices/read-replication/) for more information.
138
+
If jurisdictional restrictions are present, replicas are only created within the jurisdiction set on creation.
139
+
140
+
Refer to [D1 read replication](/d1/best-practices/read-replication/) for more information.
0 commit comments