-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (27 loc) · 904 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
variable "api_id" {
description = "The API ID for the API Gateway"
}
variable "stage_name" {
description = "The name of the stage"
}
variable "usage_plan_name" {
description = "The name for the usage plan"
}
variable "api_key_name" {
description = "The name for the API key"
}
variable "quota_limit" {
description = "The maximum number of requests that can be made in a given time period"
}
variable "quota_offset" {
description = "The number of requests subtracted from the limit for the first time period"
}
variable "quota_period" {
description = "The time period in which the limit applies (DAY, WEEK, MONTH)"
}
variable "throttle_burst_limit" {
description = "The maximum rate limit over a time ranging from one to a few seconds"
}
variable "throttle_rate_limit" {
description = "The steady-state rate limit (average requests per second over an extended period of time)"
}