Skip to content

Commit

Permalink
Merge pull request #19 from FloRul/dev
Browse files Browse the repository at this point in the history
Update API Gateway throttle and quota settings
  • Loading branch information
FloRul authored Feb 12, 2024
2 parents ab3ca72 + d7de34b commit 3bcc2d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/api_gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ resource "aws_api_gateway_usage_plan" "this" {
stage = var.api_gateway_stage_name
throttle {
burst_limit = 50
path = "/inference/GET"
path = "/inference/GET"
}
}

quota_settings {
limit = 100
offset = 2
offset = 0
period = "DAY"
}

throttle_settings {
burst_limit = 100
rate_limit = 50
Expand Down

0 comments on commit 3bcc2d5

Please sign in to comment.