Skip to content

Commit ebe1aac

Browse files
committed
Revert api-terraform
1 parent 6b442c7 commit ebe1aac

21 files changed

+553
-2
lines changed

public/__redirects

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2388,7 +2388,6 @@
23882388
/cloudflare-one/policies/browser-isolation/* /cloudflare-one/remote-browser-isolation/:splat 301
23892389
/cloudflare-one/policies/data-loss-prevention/* /cloudflare-one/data-loss-prevention/:splat 301
23902390
/cloudflare-one/policies/access/* /cloudflare-one/access-controls/policies/:splat 301
2391-
/cloudflare-one/api-terraform/* /cloudflare-one/access-controls/policies/api-terraform/:splat 301
23922391

23932392
# Learning paths
23942393

src/content/docs/cloudflare-one/access-controls/policies/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,4 @@ If you add any of the following rules to an Allow policy, anyone will be able to
193193

194194
## Additional resources
195195

196-
- [API and Terraform](/cloudflare-one/access-controls/policies/api-terraform/) provide programmatic ways to manage your Access policies and configurations.
196+
- [API and Terraform](/cloudflare-one/api-terraform/) provide programmatic ways to manage your Access policies and configurations.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
3+
summary: Use a pre-existing rule group.
4+
title: Rule group
5+
pcx_content_type: example
6+
sidebar:
7+
order: 4
8+
description: Use a pre-existing rule group.
9+
---
10+
11+
```json
12+
{
13+
"group": {
14+
"id": "aa0a4aab-672b-4bdb-bc33-a59f1130a11f"
15+
}
16+
}
17+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
3+
summary: The request will need to present the headers for any service token
4+
created for this account.
5+
title: Any valid service token
6+
pcx_content_type: example
7+
sidebar:
8+
order: 4
9+
description: The request will need to present the headers for any service token
10+
created for this account.
11+
---
12+
13+
The request will need to present the headers for any service token created for this account
14+
15+
```json
16+
{
17+
"any_valid_service_token": {}
18+
}
19+
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
3+
summary: Allow access based on the "amr" identifier.
4+
title: Authentication method
5+
pcx_content_type: example
6+
sidebar:
7+
order: 4
8+
description: Allow access based on the "amr" identifier.
9+
---
10+
11+
```json
12+
{
13+
"auth_method": {
14+
"auth_method": "hwk"
15+
}
16+
}
17+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
3+
summary: The request will need to present a valid certificate with an expected
4+
common name.
5+
title: Common name
6+
pcx_content_type: example
7+
sidebar:
8+
order: 4
9+
description: The request will need to present a valid certificate with an
10+
expected common name.
11+
---
12+
13+
```json
14+
{
15+
"common_name": {
16+
"common_name": "[email protected]"
17+
}
18+
}
19+
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
3+
summary: Allow a specific country.
4+
title: Country Code
5+
pcx_content_type: example
6+
sidebar:
7+
order: 4
8+
description: Allow a specific country.
9+
---
10+
11+
```json
12+
{
13+
"geo": {
14+
"country_code": "US"
15+
}
16+
}
17+
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
3+
summary: Allow an entire email domain.
4+
title: Email domain
5+
pcx_content_type: example
6+
sidebar:
7+
order: 4
8+
description: Allow an entire email domain.
9+
---
10+
11+
```json
12+
{
13+
"email_domain": {
14+
"domain": "cloudflare.com"
15+
}
16+
}
17+
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
3+
summary: Allow a specific email address.
4+
title: Email
5+
pcx_content_type: example
6+
sidebar:
7+
order: 4
8+
description: Allow a specific email address.
9+
---
10+
11+
```json
12+
{
13+
"email": {
14+
"email": "[email protected]"
15+
}
16+
}
17+
```
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
3+
summary: Allow members of a Microsoft Entra group. The ID is the group UUID (`id`) in Microsoft Entra ID.
4+
title: Microsoft Entra Group
5+
pcx_content_type: example
6+
sidebar:
7+
order: 4
8+
description: Allow members of a Microsoft Entra group. The ID is the group UUID (`id`) in Microsoft Entra ID.
9+
---
10+
11+
Allow members of a Microsoft Entra group. The ID is the group UUID (`id`) in Microsoft Entra ID:
12+
13+
```json
14+
{
15+
"azureAD": {
16+
"id": "86773093-5feb-48dd-814b-7ccd3676ff50",
17+
"identity_provider_id": "ca298b82-93b5-41bf-bc2d-10493f09b761"
18+
}
19+
}
20+
```

0 commit comments

Comments
 (0)