Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e13aae0

Browse files
committedMar 20, 2025··
docs: generate
1 parent 52506de commit e13aae0

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed
 

‎docs/data-sources/api_shield_discovery_operations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Available values: "host", "method", "endpoint", "traffic_stats.requests", "traff
4646
- `origin` (String) Filter results to only include discovery results sourced from a particular discovery engine
4747
* `ML` - Discovered operations that were sourced using ML API Discovery
4848
* `SessionIdentifier` - Discovered operations that were sourced using Session Identifier API Discovery
49-
Available values: "ML", "SessionIdentifier".
49+
Available values: "ML", "SessionIdentifier", "LabelDiscovery".
5050
- `state` (String) Filter results to only include discovery results in a particular state. States are as follows
5151
* `review` - Discovered operations that are not saved into API Shield Endpoint Management
5252
* `saved` - Discovered operations that are already saved into API Shield Endpoint Management

‎docs/data-sources/bot_management.md

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ data "cloudflare_bot_management" "example_bot_management" {
2929
- `ai_bots_protection` (String) Enable rule to block AI Scrapers and Crawlers.
3030
Available values: "block", "disabled".
3131
- `auto_update_model` (Boolean) Automatically update to the newest bot detection models created by Cloudflare as they are released. [Learn more.](https://developers.cloudflare.com/bots/reference/machine-learning-models#model-versions-and-release-notes)
32+
- `crawler_protection` (String) Enable rule to punish AI Scrapers and Crawlers via a link maze.
33+
Available values: "enabled", "disabled".
3234
- `enable_js` (Boolean) Use lightweight, invisible JavaScript detections to improve Bot Management. [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
3335
- `fight_mode` (Boolean) Whether to enable Bot Fight Mode.
3436
- `optimize_wordpress` (Boolean) Whether to optimize Super Bot Fight Mode protections for Wordpress.

‎docs/data-sources/ruleset.md

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ data "cloudflare_ruleset" "example_ruleset" {
3434
- `id` (String) The unique ID of the ruleset.
3535
- `kind` (String) The kind of the ruleset.
3636
Available values: "managed", "custom", "root", "zone".
37+
- `last_updated` (String) The timestamp of when the ruleset was last modified.
3738
- `name` (String) The human-readable name of the ruleset.
3839
- `phase` (String) The phase of the ruleset.
3940
Available values: "ddos_l4", "ddos_l7", "http_config_settings", "http_custom_errors", "http_log_custom_fields", "http_ratelimit", "http_request_cache_settings", "http_request_dynamic_redirect", "http_request_firewall_custom", "http_request_firewall_managed", "http_request_late_transform", "http_request_origin", "http_request_redirect", "http_request_sanitize", "http_request_sbfm", "http_request_transform", "http_response_compression", "http_response_firewall_managed", "http_response_headers_transform", "magic_transit", "magic_transit_ids_managed", "magic_transit_managed", "magic_transit_ratelimit".
@@ -53,9 +54,11 @@ Available values: "block".
5354
- `exposed_credential_check` (Attributes) Configure checks for exposed credentials. (see [below for nested schema](#nestedatt--rules--exposed_credential_check))
5455
- `expression` (String) The expression defining which traffic will match the rule.
5556
- `id` (String) The unique ID of the rule.
57+
- `last_updated` (String) The timestamp of when the rule was last modified.
5658
- `logging` (Attributes) An object configuring the rule's logging behavior. (see [below for nested schema](#nestedatt--rules--logging))
5759
- `ratelimit` (Attributes) An object configuring the rule's ratelimit behavior. (see [below for nested schema](#nestedatt--rules--ratelimit))
5860
- `ref` (String) The reference of the rule (the rule ID by default).
61+
- `version` (String) The version of the rule.
5962

6063
<a id="nestedatt--rules--action_parameters"></a>
6164
### Nested Schema for `rules.action_parameters`

‎docs/data-sources/rulesets.md

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Read-Only:
4040
- `id` (String) The unique ID of the ruleset.
4141
- `kind` (String) The kind of the ruleset.
4242
Available values: "managed", "custom", "root", "zone".
43+
- `last_updated` (String) The timestamp of when the ruleset was last modified.
4344
- `name` (String) The human-readable name of the ruleset.
4445
- `phase` (String) The phase of the ruleset.
4546
Available values: "ddos_l4", "ddos_l7", "http_config_settings", "http_custom_errors", "http_log_custom_fields", "http_ratelimit", "http_request_cache_settings", "http_request_dynamic_redirect", "http_request_firewall_custom", "http_request_firewall_managed", "http_request_late_transform", "http_request_origin", "http_request_redirect", "http_request_sanitize", "http_request_sbfm", "http_request_transform", "http_response_compression", "http_response_firewall_managed", "http_response_headers_transform", "magic_transit", "magic_transit_ids_managed", "magic_transit_managed", "magic_transit_ratelimit".

‎docs/resources/bot_management.md

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ description: |-
1515
resource "cloudflare_bot_management" "example_bot_management" {
1616
zone_id = "023e105f4ecef8ad9ca31a8372d0c353"
1717
ai_bots_protection = "block"
18+
crawler_protection = "enabled"
1819
enable_js = true
1920
fight_mode = true
2021
}
@@ -32,6 +33,8 @@ resource "cloudflare_bot_management" "example_bot_management" {
3233
- `ai_bots_protection` (String) Enable rule to block AI Scrapers and Crawlers.
3334
Available values: "block", "disabled".
3435
- `auto_update_model` (Boolean) Automatically update to the newest bot detection models created by Cloudflare as they are released. [Learn more.](https://developers.cloudflare.com/bots/reference/machine-learning-models#model-versions-and-release-notes)
36+
- `crawler_protection` (String) Enable rule to punish AI Scrapers and Crawlers via a link maze.
37+
Available values: "enabled", "disabled".
3538
- `enable_js` (Boolean) Use lightweight, invisible JavaScript detections to improve Bot Management. [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
3639
- `fight_mode` (Boolean) Whether to enable Bot Fight Mode.
3740
- `optimize_wordpress` (Boolean) Whether to optimize Super Bot Fight Mode protections for Wordpress.

0 commit comments

Comments
 (0)
Please sign in to comment.