Skip to content

Commit 88ff963

Browse files
committed
DLS-178: Add page for CMB out of region access
1 parent 152d8c3 commit 88ff963

File tree

6 files changed

+97
-95
lines changed

6 files changed

+97
-95
lines changed

src/content/docs/data-localization/metadata-boundary/faq.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pcx_content_type: faq
33
title: FAQs
44
structured_data: true
55
sidebar:
6-
order: 3
6+
order: 6
77
description: Commonly asked questions about Cloudflare's Customer Metadata Boundary.
88
---
99

@@ -35,4 +35,4 @@ The Customer Metadata Boundary is for customers who want to limit personal data
3535

3636
HTTP and Firewall analytics are available.
3737

38-
At the moment, there are no analytics available for Workers, DNS, Network Analytics, Load Balancing and Rate Limiting. Additionally, there are no dashboard logs or analytics for [Gateway](/cloudflare-one/insights/logs/gateway-logs/#limitations). Enterprise users can still export Gateway logs via [Logpush](/cloudflare-one/insights/logs/logpush/).
38+
At the moment, there are no analytics available for Workers, DNS, Network Analytics, Load Balancing and Rate Limiting. Additionally, there are no dashboard logs or analytics for [Gateway](/cloudflare-one/insights/logs/gateway-logs/#limitations). Enterprise users can still export Gateway logs via [Logpush](/cloudflare-one/insights/logs/logpush/).

src/content/docs/data-localization/metadata-boundary/get-started.mdx

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
title: Get started
33
pcx_content_type: get-started
44
sidebar:
5-
order: 1
6-
5+
order: 2
76
---
87

9-
import { Details } from "~/components"
8+
import { Details } from "~/components";
109

1110
You can configure the Metadata Boundary to select the region where your logs and analytics are stored via API or dashboard.
1211

@@ -28,7 +27,6 @@ Currently, only SuperAdmins and Admin roles can edit DLS configurations. Use the
2827

2928
These are some examples of API requests.
3029

31-
3230
<Details header="Get current regions">
3331

3432
Here is an example request using cURL to get current regions (if any):
@@ -40,18 +38,17 @@ curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_
4038
| jq '.'
4139
```
4240

43-
4441
</Details>
4542

46-
4743
<Details header="Setting regions">
4844

4945
Here is an example request using cURL to set regions:
5046

5147
```bash
5248
curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/logs/control/cmb/config -X POST -d '
5349
{
54-
"regions": "eu"
50+
"regions": "eu",
51+
"allow_out_of_region_access": false
5552
}
5653
' \
5754
-H "X-Auth-Email: <EMAIL>" \
@@ -63,10 +60,8 @@ curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_
6360
This will overwrite any previous regions.
6461
Change will be in effect after several minutes.
6562

66-
6763
</Details>
6864

69-
7065
<Details header="Delete regions">
7166

7267
Here is an example request using cURL to delete regions:
@@ -78,7 +73,6 @@ curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_
7873
| jq '.'
7974
```
8075

81-
8276
</Details>
8377

8478
## View or change settings

0 commit comments

Comments
 (0)