File tree Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ locals {
10
10
11
11
module "api_gateway_rest_api" {
12
12
source = " cloudposse/api-gateway/aws"
13
- version = " 0.3.1 "
13
+ version = " 0.8.0 "
14
14
15
15
enabled = local. enabled
16
16
@@ -22,6 +22,9 @@ module "api_gateway_rest_api" {
22
22
access_log_format = var. access_log_format
23
23
rest_api_policy = var. rest_api_policy
24
24
private_link_target_arns = module. nlb [* ]. nlb_arn
25
+ stage_name = var. stage_name
26
+ throttling_burst_limit = var. throttling_burst_limit
27
+ throttling_rate_limit = var. throttling_rate_limit
25
28
26
29
context = module. this . context
27
30
}
Original file line number Diff line number Diff line change @@ -132,3 +132,21 @@ variable "enable_private_link_nlb" {
132
132
type = bool
133
133
default = false
134
134
}
135
+
136
+ variable "stage_name" {
137
+ type = string
138
+ default = " "
139
+ description = " The name of the stage"
140
+ }
141
+
142
+ variable "throttling_burst_limit" {
143
+ description = " The API request burst limit"
144
+ type = number
145
+ default = - 1
146
+ }
147
+
148
+ variable "throttling_rate_limit" {
149
+ description = " The API request rate limit"
150
+ type = number
151
+ default = - 1
152
+ }
You can’t perform that action at this time.
0 commit comments