Rate limiting rules configuration using Terraform
This page provides examples of creating rate limiting rules in a zone or account using Terraform.
The Terraform configurations provided in this page need the zone ID (or account ID) of the zone/account where you will deploy rulesets.
- To retrieve the list of accounts you have access to, including their IDs, use the List accounts operation.
- To retrieve the list of zones you have access to, including their IDs, use the List zones operation.
Terraform assumes that it has complete control over account and zone rulesets. If you already have rulesets configured in your account or zone, do one of the following:
- Import existing rulesets to Terraform using the
cf-terraforming
tool. Recent versions of the tool can generate resource definitions for existing rulesets and import their configuration to Terraform state. - Start from scratch by deleting existing rulesets (account and zone rulesets with
"kind": "root"
and"kind": "zone"
, respectively) and then defining your rulesets configuration in Terraform.
This example creates a rate limiting rule in zone with ID <ZONE_ID>
blocking traffic that exceeds the configured rate:
resource "cloudflare_ruleset" "zone_rl" { zone_id = "<ZONE_ID>" name = "Rate limiting for my zone" description = "" kind = "zone" phase = "http_ratelimit"
rules { ref = "rate_limit_api_requests_ip" description = "Rate limit API requests by IP" expression = "(http.request.uri.path matches \"^/api/\")" action = "block" ratelimit { characteristics = ["cf.colo.id", "ip.src"] period = 60 requests_per_period = 100 mitigation_timeout = 600 } }}
To create another rate limiting rule, add a new rules
object to the same cloudflare_ruleset
resource.
This example defines a custom ruleset with a single rate limiting rule in account with ID <ACCOUNT_ID>
that blocks traffic for the /api/
path exceeding the configured rate. The second cloudflare_ruleset
resource defines an execute
rule that deploys the custom ruleset for traffic addressed at example.com
.
resource "cloudflare_ruleset" "account_rl" { account_id = "<ACCOUNT_ID>" name = "Rate limiting rules for APIs" description = "" kind = "custom" phase = "http_ratelimit"
rules { ref = "rate_limit_api_ip" description = "Rate limit API requests by IP" expression = "http.request.uri.path contains \"/api/\"" action = "block" ratelimit { characteristics = ["cf.colo.id", "ip.src"] period = 60 requests_per_period = 100 mitigation_timeout = 600 } }}
# Account-level entry point ruleset for the 'http_ratelimit' phaseresource "cloudflare_ruleset" "account_rl_entrypoint" { account_id = <ACCOUNT_ID> name = "Account-level rate limiting" description = "" kind = "root" phase = "http_ratelimit"
depends_on = [cloudflare_ruleset.account_rl]
rules { # Deploy the previously defined custom ruleset containing a rate limiting rule ref = "deploy_rate_limit_example_com" description = "Deploy custom ruleset with RL rule" expression = "cf.zone.name eq \"example.com\" and cf.zone.plan eq \"ENT\"" action = "execute" action_parameters { id = cloudflare_ruleset.account_rl.id } }}
To create another rate limiting rule, add a new rules
object to the same cloudflare_ruleset
resource.
This example creates a rate limiting rule in zone with ID <ZONE_ID>
with:
- A custom counting expression that includes a response field (
http.response.code
). - A custom JSON response for rate limited requests.
resource "cloudflare_ruleset" "zone_rl_custom_response" { zone_id = "<ZONE_ID>" name = "Advanced rate limiting rule for my zone" description = "" kind = "zone" phase = "http_ratelimit"
rules { ref = "rate_limit_example_com_status_404" description = "Rate limit requests to www.example.com when exceeding the threshold of 404 responses on /status/" expression = "http.host eq \"www.example.com\" and (http.request.uri.path matches \"^/status/\")" action = "block" action_parameters { response { status_code = 429 content = "{\"response\": \"block\"}" content_type = "application/json" } } ratelimit { characteristics = ["ip.src", "cf.colo.id"] period = 10 requests_per_period = 5 mitigation_timeout = 30 counting_expression = "(http.host eq \"www.example.com\") and (http.request.uri.path matches \"^/status/\") and (http.response.code eq 404)" } }}
To create another rate limiting rule, add a new rules
object to the same cloudflare_ruleset
resource.