Skip to content

Commit 3265f42

Browse files
jonesphillipharshil1712
authored andcommitted
Remove jurisdiction beta label and limitation for event notifications (#17693)
1 parent 23c81f6 commit 3265f42

File tree

1 file changed

+16
-25
lines changed

1 file changed

+16
-25
lines changed

src/content/docs/r2/reference/data-location.mdx

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: Data location
33
pcx_content_type: concept
44
sidebar:
55
order: 7
6-
76
---
87

98
Learn how the location of data stored in R2 is determined and about the different available inputs that control the physical location where objects in your buckets are stored.
@@ -25,7 +24,7 @@ You can choose to automatically create your bucket in the closest available regi
2524
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select **R2**.
2625
2. Select **Create bucket**.
2726
3. Enter a name for the bucket.
28-
4. Under **Location**, leave *None* selected for automatic selection or choose a region from the list.
27+
4. Under **Location**, leave _None_ selected for automatic selection or choose a region from the list.
2928
5. Select **Create bucket** to complete the bucket creation process.
3029

3130
### Set hints via the S3 API
@@ -34,12 +33,12 @@ You can set the Location Hint via the `LocationConstraint` parameter using the S
3433

3534
```js
3635
await S3.send(
37-
new CreateBucketCommand({
38-
Bucket: "YOUR_BUCKET_NAME",
39-
CreateBucketConfiguration: {
40-
LocationConstraint: "WNAM",
41-
},
42-
})
36+
new CreateBucketCommand({
37+
Bucket: "YOUR_BUCKET_NAME",
38+
CreateBucketConfiguration: {
39+
LocationConstraint: "WNAM",
40+
},
41+
}),
4342
);
4443
```
4544

@@ -63,14 +62,6 @@ Location Hints are only honored the first time a bucket with a given name is cre
6362

6463
## Jurisdictional Restrictions
6564

66-
:::note
67-
68-
69-
This feature is currently in beta. If you have feedback, reach out to us on the [Cloudflare Developer Discord](https://discord.cloudflare.com) in the #r2-storage channel or open a thread on the [Community Forum](https://community.cloudflare.com/c/developers/storage/81).
70-
71-
72-
:::
73-
7465
Jurisdictional Restrictions guarantee objects in a bucket are stored within a specific jurisdiction.
7566

7667
Use Jurisdictional Restrictions when you need to ensure data is stored and processed within a jurisdiction to meet data residency requirements, including local regulations such as the [GDPR](https://gdpr-info.eu/) or [FedRAMP](https://blog.cloudflare.com/cloudflare-achieves-fedramp-authorization/).
@@ -109,7 +100,8 @@ The example below shows how to create an R2 bucket in the `eu` jurisdiction usin
109100
```js
110101
import { S3Client, CreateBucketCommand } from "@aws-sdk/client-s3";
111102
const S3 = new S3Client({
112-
endpoint: "https://4893d737c0b9e484dfc37ec392b5fa8a.eu.r2.cloudflarestorage.com",
103+
endpoint:
104+
"https://4893d737c0b9e484dfc37ec392b5fa8a.eu.r2.cloudflarestorage.com",
113105
credentials: {
114106
accessKeyId: "7dc27c125a22ad808cd01df8ec309d41",
115107
secretAccessKey:
@@ -118,9 +110,9 @@ const S3 = new S3Client({
118110
region: "auto",
119111
});
120112
await S3.send(
121-
new CreateBucketCommand({
122-
Bucket: "YOUR_BUCKET_NAME"
123-
})
113+
new CreateBucketCommand({
114+
Bucket: "YOUR_BUCKET_NAME",
115+
}),
124116
);
125117
```
126118

@@ -137,16 +129,15 @@ The following jurisdictions are supported:
137129

138130
:::note
139131

140-
Cloudflare Enterprise customers may contact their account team or [Cloudflare Support](/support/contacting-cloudflare-support/) to get access to the FedRAMP jurisdiction.
132+
Cloudflare Enterprise customers may contact their account team or [Cloudflare Support](/support/contacting-cloudflare-support/) to get access to the FedRAMP jurisdiction.
141133
:::
142134

143135
### Limitations
144136

145-
During the beta, the following services will not interact with R2 resources with assigned jurisdictions:
137+
The following services do not interact with R2 resources with assigned jurisdictions:
146138

147-
* [Super Slurper](/r2/data-migration/)
148-
* [Logpush](/logs/get-started/enable-destinations/r2/)
149-
* [Event Notifications](/r2/buckets/event-notifications/)
139+
- [Super Slurper](/r2/data-migration/) (_coming soon_)
140+
- [Logpush](/logs/get-started/enable-destinations/r2/)
150141

151142
### Additional considerations
152143

0 commit comments

Comments
 (0)