Skip to content

Commit

Permalink
tweak rate limits
Browse files Browse the repository at this point in the history
  • Loading branch information
solomon-negusse committed May 23, 2024
1 parent dbae03f commit 03d9b8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions terraform/modules/api_gateway/gateway/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ variable "api_gateway_usage_plans" {
default = {
internal_apps = {
quota_limit = 10000 # per day
burst_limit = 100 # per second
rate_limit = 200
burst_limit = 300
rate_limit = 200 # per second
}
external_apps = {
quota_limit = 500
burst_limit = 10
rate_limit = 20
quota_limit = 1000
burst_limit = 20
rate_limit = 10
}
}
}

0 comments on commit 03d9b8c

Please sign in to comment.