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
Copy file name to clipboardExpand all lines: src/content/docs/cloudflare-one/policies/gateway/tiered-policies/index.mdx
+88-5Lines changed: 88 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,95 @@ pcx_content_type: navigation
3
3
title: Tiered policies
4
4
sidebar:
5
5
order: 15
6
-
group:
7
-
hideIndex: true
8
6
---
9
7
10
-
import { DirectoryListing } from"~/components";
8
+
:::note
9
+
Only available on Enterprise plans. For more information, contact your account team.
10
+
:::
11
11
12
-
Zero Trust supports two types of Gateway tiered policy configurations:
12
+
{/* TODO: Update the Orgs link with most up to date option */}
13
13
14
-
<DirectoryListing />
14
+
Gateway supports using [Cloudflare Organizations](/fundamentals/organizations/) to share configurations between and apply specific policies to accounts within an organization. Tiered organizational policies support [DNS](/cloudflare-one/policies/gateway/dns-policies/), [network](/cloudflare-one/policies/gateway/network-policies/), [HTTP](/cloudflare-one/policies/gateway/http-policies/), and [resolver](/cloudflare-one/policies/gateway/resolver-policies/) policies.
15
+
16
+
## Get started
17
+
18
+
{/* Don't need to surface much of the policy creation flow here */}
19
+
20
+
To set up Cloudflare Organizations, refer to [Create an Organization](/fundamentals/organizations/#create-an-organization). Once you have provisioned and configured your organization's accounts, you can create [Gateway policies](/cloudflare-one/policies/gateway/).
21
+
22
+
## Account types
23
+
24
+
The Gateway Tenant platform supports tiered and siloed account configurations.
25
+
26
+
### Tiered accounts
27
+
28
+
In a tiered account configuration, a top-level parent account enforces global security policies that apply to all of its child accounts. Child accounts can add policies as needed while still being managed by the parent account. Organization owners can also configure child accounts independently from the parent account, including:
29
+
30
+
- Configuring a [custom block page](/cloudflare-one/policies/gateway/block-page/)
31
+
- Generating or uploading [root certificates](/cloudflare-one/connections/connect-devices/user-side-certificates/)
Gateway will automatically [generate a unique root CA](/cloudflare-one/connections/connect-devices/user-side-certificates/#generate-a-cloudflare-root-certificate) for each child account in an organization. Each child account is subject to the default Zero Trust [account limits](/cloudflare-one/account-limits/).
36
+
37
+
Gateway evaluates parent account policies before any child account policies. In a Cloudflare Organization, child accounts cannot bypass parent account policies. All traffic and corresponding policies, logs, and configurations for a child account will be contained to that child account. Organization owners can view logs for child accounts on a per-account basis, and [Logpush jobs](/logs/logpush/) must be configured separately.
38
+
39
+
```mermaid
40
+
flowchart TD
41
+
%% Accessibility
42
+
accTitle: How Gateway policies work in a tiered account configuration
43
+
accDescr: Flowchart describing the order of precedence Gateway applies policies in a tiered account configuration.
44
+
45
+
%% Flowchart
46
+
subgraph s1["Parent account"]
47
+
n1["Block malware"]
48
+
n2["Block DNS tunnel"]
49
+
n3["Block spyware"]
50
+
end
51
+
subgraph s2["Child account A"]
52
+
n4["Block social media"]
53
+
end
54
+
subgraph s3["Child account B"]
55
+
n5["Block instant messaging"]
56
+
end
57
+
n1 ~~~ n2
58
+
n2 ~~~ n3
59
+
s1 -- "Applies policies to" --> s2 & s3
60
+
61
+
n1@{ shape: lean-l}
62
+
n2@{ shape: lean-l}
63
+
n3@{ shape: lean-l}
64
+
n4@{ shape: lean-l}
65
+
n5@{ shape: lean-l}
66
+
```
67
+
68
+
:::caution[Limitations]
69
+
Tiered policies do not support egress policies, device posture selectors, private apps, or virtual networks.
70
+
:::
71
+
72
+
### Siloed accounts
73
+
74
+
In a siloed account configuration, each account operates independently within the same tenant. Organization owners manage each account's own security policies, resources, and configurations separately.
75
+
76
+
```mermaid
77
+
flowchart TD
78
+
%% Accessibility
79
+
accTitle: How Gateway policies work in a siloed account configuration
80
+
accDescr: Flowchart describing the order of precedence Gateway applies policies in a siloed account configuration.
0 commit comments