| [ Web Proxy ] |
| Viewing: https://developers.cloudflare.com/data-localization/metadata-boundary/get-started/ | [Back] [Original] |
You can configure the Customer Metadata Boundary to select the region where your logs and analytics are stored. This setting controls where Cloudflare stores traffic metadata that could identify your end users. You can configure it via API or the dashboard.
Currently, this can only be applied at the account-level. If you only want the Metadata Boundary to be applied on a portion of zones beneath the same account, you will have to move the rest of zones to a new account.
To configure Customer Metadata Boundary in the dashboard:
In the Cloudflare dashboard, go to the Settings page.
Go to Configurations ↗In Customer Metadata Boundary, select the region you want to use: eu or us. Selecting Global applies no metadata boundary the default meaning Customer Logs may be stored in Cloudflare's core data centers globally.
You can also configure Customer Metadata Boundary via API.
Currently, only SuperAdmins and Admin roles can edit DLS configurations. Use the Account-level Logs:Read/Write API permissions for the /logs/control/cmb endpoint to read/write Customer Metadata Boundary configurations.
These are some examples of API requests.
Get current regions
Here is an example request using cURL to get current regions (if any):
Required API token permissions
At least one of the following token permissions is required:Logs WriteLogs Readcurl "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/logs/control/cmb/config" \
--request GET \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN"Setting regions
Here is an example request using cURL to set regions:
Required API token permissions
At least one of the following token permissions is required:Logs Writecurl "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/logs/control/cmb/config" \
--request POST \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
--json '{
"regions": "eu",
"allow_out_of_region_access": false
}'This will overwrite any previous regions. Change will be in effect after several minutes.
Delete regions
Here is an example request using cURL to delete regions:
Required API token permissions
At least one of the following token permissions is required:Logs Writecurl "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/logs/control/cmb/config" \
--request DELETE \
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN"
To view or change your Customer Metadata Boundary setting:
In the Cloudflare dashboard, go to the Settings page.
Go to Configurations ↗Go to Preferences.
Locate the Customer Metadata Boundary section.
| Web Proxy Viewer | New URL | Original Page |