Skip to content

Commit 58a09bc

Browse files
committed
Update API title and description
1 parent 5a9c111 commit 58a09bc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/docs/learning-paths/secure-internet-traffic/build-network-policies/recommended-network-policies.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -383,8 +383,8 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/gateway/rules \
383383
--header "Content-Type: application/json" \
384384
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
385385
--data '{
386-
"name": "All-NET-NO-HTTP-HTTPS-Internet-Deny",
387-
"description": "Block all non-web traffic towards the Internet",
386+
"name": "All-NET-InternalNetwork-ImplicitDeny",
387+
"description": "Implicitly deny all of your internal IP ranges included in a list",
388388
"precedence": 0,
389389
"enabled": true,
390390
"action": "block",
@@ -400,10 +400,10 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/gateway/rules \
400400
<TabItem label="Terraform">
401401

402402
```tf
403-
resource "cloudflare_zero_trust_gateway_policy" "all_net_no_http_https_internet_deny" {
403+
resource "cloudflare_zero_trust_gateway_policy" "all_net_internalnetwork_implicitdeny" {
404404
account_id = var.account_id
405-
name = "All-NET-NO-HTTP-HTTPS-Internet-Deny"
406-
description = "Block all non-web traffic towards the Internet"
405+
name = "All-NET-InternalNetwork-ImplicitDeny"
406+
description = "Implicitly deny all of your internal IP ranges included in a list"
407407
precedence = 0
408408
enabled = true
409409
action = "block"

0 commit comments

Comments
 (0)