-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
258 lines (210 loc) · 6.48 KB
/
main.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
provider "aws" {
region = var.aws_region
}
terraform {
backend "s3" {}
required_version = ">= 0.12.0"
}
# Lambda
data "archive_file" "lambda-zip" {
type = "zip"
source_dir = "src"
output_path = "${var.name}.zip"
}
resource "aws_lambda_function" "lambda" {
function_name = var.name
description = "Lambda for ${var.name}"
timeout = var.lambda_timeout
memory_size = var.lambda_memory
handler = var.lambda_handler
runtime = var.lambda_runtime
role = aws_iam_role.lambda_role.arn
filename = "${var.name}.zip"
tags = var.tags
}
# API Permissions
resource "aws_lambda_permission" "allow_api_gateway" {
function_name = var.name
statement_id = "AllowExecutionFromApiGateway"
action = "lambda:InvokeFunction"
principal = "apigateway.amazonaws.com"
source_arn = "${aws_api_gateway_rest_api.apig.execution_arn}/*/*/*"
depends_on = [
aws_api_gateway_rest_api.apig,
aws_api_gateway_resource.receive-lambda,
]
}
resource "aws_iam_role" "lambda_role" {
name = "${var.name}-lambda-role"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
tags = var.tags
}
resource "aws_iam_role_policy" "logs" {
name = "${aws_iam_role.lambda_role.name}-logs"
role = aws_iam_role.lambda_role.id
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:DescribeLogGroups",
"logs:DescribeLogStreams",
"logs:PutLogEvents",
"logs:GetLogEvents",
"logs:FilterLogEvents"
],
"Resource": "*"
}
]
}
EOF
}
# APIG
resource "aws_api_gateway_rest_api" "apig" {
name = var.name
description = var.api_description
endpoint_configuration {
types = ["REGIONAL"]
}
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "execute-api:Invoke",
"Resource": "*"
}
]
}
EOF
tags = var.tags
}
resource "aws_api_gateway_stage" "test" {
stage_name = var.stage_name
rest_api_id = aws_api_gateway_rest_api.apig.id
deployment_id = aws_api_gateway_deployment.apig-deployment.id
tags = var.tags
}
resource "aws_api_gateway_deployment" "apig-deployment" {
depends_on = [
aws_api_gateway_integration.ResourceOptionsIntegration-lambda,
aws_api_gateway_integration.integration-lambda,
]
rest_api_id = aws_api_gateway_rest_api.apig.id
stage_name = "" # leave blank
}
resource "aws_api_gateway_resource" "receive-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
parent_id = aws_api_gateway_rest_api.apig.root_resource_id
path_part = var.api_path_part
}
resource "aws_api_gateway_method_response" "sc-200-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = aws_api_gateway_method.method-lambda.http_method
status_code = "200"
response_models = {
"application/json" = "Empty"
}
}
resource "aws_api_gateway_method_response" "sc-404-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = aws_api_gateway_method.method-lambda.http_method
status_code = "404"
response_models = {
"application/json" = "Empty"
}
}
resource "aws_api_gateway_method_response" "sc-503-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = aws_api_gateway_method.method-lambda.http_method
status_code = "503"
response_models = {
"application/json" = "Empty"
}
}
resource "aws_api_gateway_method" "method-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = "ANY"
authorization = "NONE"
}
resource "aws_api_gateway_integration" "integration-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = aws_api_gateway_method.method-lambda.http_method
integration_http_method = "POST"
type = "AWS_PROXY"
uri = aws_lambda_function.lambda.invoke_arn
request_templates = {
"application/json" = <<PARAMS
{ statusCode: 200 }
PARAMS
}
}
resource "aws_api_gateway_method" "ResourceOptions-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = "OPTIONS"
authorization = "NONE"
}
resource "aws_api_gateway_integration" "ResourceOptionsIntegration-lambda" {
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = aws_api_gateway_method.ResourceOptions-lambda.http_method
type = "MOCK"
request_templates = {
"application/json" = <<PARAMS
{ "statusCode": 200 }
PARAMS
}
}
resource "aws_api_gateway_integration_response" "ResourceOptionsIntegrationResponse-lambda" {
depends_on = [aws_api_gateway_integration.ResourceOptionsIntegration-lambda]
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = aws_api_gateway_method.ResourceOptions-lambda.http_method
status_code = "200"
response_parameters = {
"method.response.header.Access-Control-Allow-Headers" = "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
"method.response.header.Access-Control-Allow-Methods" = "'POST,OPTIONS,GET,PUT,PATCH,DELETE'"
"method.response.header.Access-Control-Allow-Origin" = "'*'"
}
}
resource "aws_api_gateway_method_response" "ResourceOptions200-lambda" {
depends_on = [aws_api_gateway_method.ResourceOptions-lambda]
rest_api_id = aws_api_gateway_rest_api.apig.id
resource_id = aws_api_gateway_resource.receive-lambda.id
http_method = "OPTIONS"
status_code = "200"
response_models = {
"application/json" = "Empty"
}
response_parameters = {
"method.response.header.Access-Control-Allow-Headers" = true
"method.response.header.Access-Control-Allow-Methods" = true
"method.response.header.Access-Control-Allow-Origin" = true
}
}