-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
169 lines (143 loc) · 4.23 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
################################################################################
# API Gateway
################################################################################
variable "name" {
description = "Name of the API gateway"
type = string
}
variable "stage" {
description = "Name of the API gateway stage"
type = string
}
variable "body_template" {
description = "OpenAPI specification template"
type = string
default = ""
}
variable "stage_variables" {
description = "Stage variables for the API gateway stage"
type = map(any)
default = {}
}
variable "types" {
description = "Name of the API gateway stage"
type = list(string)
default = ["REGIONAL"]
}
variable "throttling_burst_limit" {
description = "The API request burst limit, the maximum rate limit over a time ranging from one to a few seconds, depending upon whether the underlying token bucket is at its full capacity."
type = number
default = 1000
}
variable "throttling_rate_limit" {
description = "The API request steady-state rate limit"
type = number
default = 1000
}
variable "metrics_enabled" {
description = "Specifies whether Amazon CloudWatch metrics are enabled for this method."
type = bool
default = false
}
variable "logging_level" {
description = "Specifies the logging level for this method."
type = string
default = "ERROR"
}
variable "data_trace_enabled" {
description = "Specifies the logging level for this method."
type = bool
default = false
}
variable "cache_cluster_enabled" {
description = "Specifies whether a cache cluster is enabled for the stage."
type = bool
default = false
}
variable "cache_data_encrypted" {
description = "Specifies whether a cache data needs to be encrypted."
type = bool
default = true
}
variable "cache_cluster_size" {
description = "The size of the cache cluster for the stage, if enabled"
type = string
default = "0.5"
}
variable "cache_ttl" {
description = "The cache TTL of the stage"
type = number
default = 300
}
variable "log_group_name" {
description = "Custom log group name."
type = string
default = ""
}
variable "log_format" {
description = "Cloudwatch log format"
type = map(string)
default = {
requestId = "$context.requestId"
extendedRequestId = "$context.extendedRequestId"
ip = "$context.identity.sourceIp"
caller = "$context.identity.caller"
user = "$context.identity.user"
requestTime = "$context.requestTime"
httpMethod = "$context.httpMethod"
resourcePath = "$context.resourcePath"
status = "$context.status"
protocol = "$context.protocol"
responseLength = "$context.responseLength"
}
}
variable "log_retention_in_days" {
description = "Cloudwatch log retention in days"
type = number
default = 7
}
variable "log_kms_key_id" {
description = "The ARN of the KMS Key to use when encrypting log data"
type = string
default = ""
}
variable "caching_enabled" {
description = "Specifies whether caching is enabled for the API gateway method"
type = bool
default = false
}
variable "vpc_links" {
description = "List of VPC links for REST APIs. key in the map denotes the vpc link name"
type = map(
object({
description = string
target_arns = list(string)
})
)
default = {}
}
variable "enable_global_apigw_logging" {
description = "Enable global apigw logging"
type = bool
default = false
}
variable "enable_resource_policy" {
description = "Enable resource policy to allow other resources to Invoke this API"
type = bool
default = false
}
variable "resource_policy_json" {
description = "Resource policy as JSON to attach"
type = string
default = null
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "tf_resources_hash" {
description = "for api gateways that are not using body_template and are using terraform resources"
type = string
default = ""
}