-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
variables.tf
381 lines (329 loc) · 13.4 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
variable "create" {
description = "Controls if resources should be created"
type = bool
default = true
}
variable "tags" {
description = "A mapping of tags to assign to API gateway resources"
type = map(string)
default = {}
}
################################################################################
# API Gateway
################################################################################
variable "api_key_selection_expression" {
description = "An API key selection expression. Valid values: `$context.authorizer.usageIdentifierKey`, `$request.header.x-api-key`. Defaults to `$request.header.x-api-key`. Applicable for WebSocket APIs"
type = string
default = null
}
variable "cors_configuration" {
description = "The cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs"
type = object({
allow_credentials = optional(bool)
allow_headers = optional(list(string))
allow_methods = optional(list(string))
allow_origins = optional(list(string))
expose_headers = optional(list(string), [])
max_age = optional(number)
})
default = null
}
variable "credentials_arn" {
description = "Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs"
type = string
default = null
}
variable "description" {
description = "The description of the API. Must be less than or equal to 1024 characters in length"
type = string
default = null
}
variable "disable_execute_api_endpoint" {
description = "Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default `{api_id}.execute-api.{region}.amazonaws.com endpoint`. To require that clients use a custom domain name to invoke the API, disable the default endpoint"
type = bool
default = null
}
variable "fail_on_warnings" {
description = "Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to `false`. Applicable for HTTP APIs"
type = bool
default = null
}
variable "name" {
description = "The name of the API. Must be less than or equal to 128 characters in length"
type = string
default = ""
}
variable "body" {
description = "An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs"
type = string
default = null
}
variable "protocol_type" {
description = "The API protocol. Valid values: `HTTP`, `WEBSOCKET`"
type = string
default = "HTTP"
}
variable "route_key" {
description = "Part of quick create. Specifies any route key. Applicable for HTTP APIs"
type = string
default = null
}
variable "route_selection_expression" {
description = "The route selection expression for the API. Defaults to `$request.method $request.path`"
type = string
default = null
}
variable "target" {
description = "Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs"
type = string
default = null
}
variable "api_version" {
description = "A version identifier for the API. Must be between 1 and 64 characters in length"
type = string
default = null
}
variable "api_mapping_key" {
description = "The [API mapping key](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-mapping-template-reference.html)"
type = string
default = null
}
################################################################################
# Authorizer(s)
################################################################################
variable "authorizers" {
description = "Map of API gateway authorizers to create"
type = map(object({
authorizer_credentials_arn = optional(string)
authorizer_payload_format_version = optional(string)
authorizer_result_ttl_in_seconds = optional(number)
authorizer_type = optional(string, "REQUEST")
authorizer_uri = optional(string)
enable_simple_responses = optional(bool)
identity_sources = optional(list(string))
jwt_configuration = optional(object({
audience = optional(list(string))
issuer = optional(string)
}))
name = optional(string)
}))
default = {}
}
################################################################################
# Domain Name
################################################################################
variable "create_domain_name" {
description = "Whether to create API domain name resource"
type = bool
default = true
}
variable "domain_name" {
description = "The domain name to use for API gateway"
type = string
default = ""
}
variable "hosted_zone_name" {
description = "Optional domain name of the Hosted Zone where the domain should be created"
type = string
default = null
}
variable "domain_name_certificate_arn" {
description = "The ARN of an AWS-managed certificate that will be used by the endpoint for the domain name. AWS Certificate Manager is the only supported source"
type = string
default = null
}
variable "domain_name_ownership_verification_certificate_arn" {
description = "ARN of the AWS-issued certificate used to validate custom domain ownership (when certificate_arn is issued via an ACM Private CA or mutual_tls_authentication is configured with an ACM-imported certificate.)"
type = string
default = null
}
variable "mutual_tls_authentication" {
description = "The mutual TLS authentication configuration for the domain name"
type = map(string)
default = {}
}
################################################################################
# Domain - Route53 Record
################################################################################
variable "create_domain_records" {
description = "Whether to create Route53 records for the domain name"
type = bool
default = true
}
variable "subdomains" {
description = "An optional list of subdomains to use for API gateway"
type = list(string)
default = []
}
variable "subdomain_record_types" {
description = "A list of record types to create for the subdomain(s)"
type = list(string)
default = ["A", "AAAA"]
}
################################################################################
# Domain - Certificate
################################################################################
variable "create_certificate" {
description = "Whether to create a certificate for the domain"
type = bool
default = true
}
################################################################################
# Route(s) & Integration(s)
################################################################################
variable "create_routes_and_integrations" {
description = "Whether to create routes and integrations resources"
type = bool
default = true
}
variable "routes" {
description = "Map of API gateway routes with integrations"
type = map(object({
# Route
authorizer_key = optional(string)
api_key_required = optional(bool)
authorization_scopes = optional(list(string), [])
authorization_type = optional(string)
authorizer_id = optional(string)
model_selection_expression = optional(string)
operation_name = optional(string)
request_models = optional(map(string), {})
request_parameter = optional(object({
request_parameter_key = optional(string)
required = optional(bool, false)
}), {})
route_response_selection_expression = optional(string)
# Route settings
data_trace_enabled = optional(bool)
detailed_metrics_enabled = optional(bool)
logging_level = optional(string)
throttling_burst_limit = optional(number)
throttling_rate_limit = optional(number)
# Stage - Route response
route_response = optional(object({
create = optional(bool, false)
model_selection_expression = optional(string)
response_models = optional(map(string))
route_response_key = optional(string, "$default")
}), {})
# Integration
integration = object({
connection_id = optional(string)
vpc_link_key = optional(string)
connection_type = optional(string)
content_handling_strategy = optional(string)
credentials_arn = optional(string)
description = optional(string)
method = optional(string)
subtype = optional(string)
type = optional(string, "AWS_PROXY")
uri = optional(string)
passthrough_behavior = optional(string)
payload_format_version = optional(string)
request_parameters = optional(map(string), {})
request_templates = optional(map(string), {})
response_parameters = optional(list(object({
mappings = map(string)
status_code = string
})))
template_selection_expression = optional(string)
timeout_milliseconds = optional(number)
tls_config = optional(object({
server_name_to_verify = optional(string)
}))
# Integration Response
response = optional(object({
content_handling_strategy = optional(string)
integration_response_key = optional(string)
response_templates = optional(map(string))
template_selection_expression = optional(string)
}), {})
})
}))
default = {}
}
################################################################################
# Stage
################################################################################
variable "create_stage" {
description = "Whether to create default stage"
type = bool
default = true
}
variable "stage_access_log_settings" {
description = "Settings for logging access in this stage. Use the aws_api_gateway_account resource to configure [permissions for CloudWatch Logging](https://docs.aws.amazon.com/apigateway/latest/developerguide/set-up-logging.html#set-up-access-logging-permissions)"
type = object({
create_log_group = optional(bool, true)
destination_arn = optional(string)
format = optional(string)
log_group_name = optional(string)
log_group_retention_in_days = optional(number, 30)
log_group_kms_key_id = optional(string)
log_group_skip_destroy = optional(bool)
log_group_class = optional(string)
log_group_tags = optional(map(string), {})
})
default = {}
}
variable "stage_client_certificate_id" {
description = "The identifier of a client certificate for the stage. Use the `aws_api_gateway_client_certificate` resource to configure a client certificate. Supported only for WebSocket APIs"
type = string
default = null
}
variable "stage_default_route_settings" {
description = "The default route settings for the stage"
type = object({
data_trace_enabled = optional(bool, true)
detailed_metrics_enabled = optional(bool, true)
logging_level = optional(string)
throttling_burst_limit = optional(number, 500)
throttling_rate_limit = optional(number, 1000)
})
default = {}
}
variable "stage_description" {
description = "The description for the stage. Must be less than or equal to 1024 characters in length"
type = string
default = null
}
variable "stage_name" {
description = "The name of the stage. Must be between 1 and 128 characters in length"
type = string
default = "$default"
}
variable "stage_variables" {
description = "A map that defines the stage variables for the stage"
type = map(string)
default = {}
}
variable "stage_tags" {
description = "A mapping of tags to assign to the stage resource"
type = map(string)
default = {}
}
################################################################################
# Deployment
################################################################################
variable "deploy_stage" {
description = "Whether to deploy the stage. `HTTP` APIs are auto-deployed by default"
type = bool
default = true
}
################################################################################
# VPC Link
################################################################################
variable "vpc_links" {
description = "Map of VPC Link definitions to create"
type = map(object({
name = optional(string)
security_group_ids = optional(list(string))
subnet_ids = optional(list(string))
tags = optional(map(string), {})
}))
default = {}
}
variable "vpc_link_tags" {
description = "A map of tags to add to the VPC Links created"
type = map(string)
default = {}
}