-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
main.tf
378 lines (310 loc) · 12.1 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
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
resource "aws_dynamodb_table" "this" {
count = var.create_table && !var.autoscaling_enabled ? 1 : 0
name = var.name
billing_mode = var.billing_mode
hash_key = var.hash_key
range_key = var.range_key
read_capacity = var.read_capacity
write_capacity = var.write_capacity
stream_enabled = var.stream_enabled
stream_view_type = var.stream_view_type
table_class = var.table_class
deletion_protection_enabled = var.deletion_protection_enabled
restore_date_time = var.restore_date_time
restore_source_name = var.restore_source_name
restore_source_table_arn = var.restore_source_table_arn
restore_to_latest_time = var.restore_to_latest_time
ttl {
enabled = var.ttl_enabled
attribute_name = var.ttl_attribute_name
}
point_in_time_recovery {
enabled = var.point_in_time_recovery_enabled
}
dynamic "attribute" {
for_each = var.attributes
content {
name = attribute.value.name
type = attribute.value.type
}
}
dynamic "local_secondary_index" {
for_each = var.local_secondary_indexes
content {
name = local_secondary_index.value.name
range_key = local_secondary_index.value.range_key
projection_type = local_secondary_index.value.projection_type
non_key_attributes = lookup(local_secondary_index.value, "non_key_attributes", null)
}
}
dynamic "global_secondary_index" {
for_each = var.global_secondary_indexes
content {
name = global_secondary_index.value.name
hash_key = global_secondary_index.value.hash_key
projection_type = global_secondary_index.value.projection_type
range_key = lookup(global_secondary_index.value, "range_key", null)
read_capacity = lookup(global_secondary_index.value, "read_capacity", null)
write_capacity = lookup(global_secondary_index.value, "write_capacity", null)
non_key_attributes = lookup(global_secondary_index.value, "non_key_attributes", null)
dynamic "on_demand_throughput" {
for_each = try([global_secondary_index.value.on_demand_throughput], [])
content {
max_read_request_units = try(on_demand_throughput.value.max_read_request_units, null)
max_write_request_units = try(on_demand_throughput.value.max_write_request_units, null)
}
}
}
}
dynamic "replica" {
for_each = var.replica_regions
content {
region_name = replica.value.region_name
kms_key_arn = lookup(replica.value, "kms_key_arn", null)
propagate_tags = lookup(replica.value, "propagate_tags", null)
point_in_time_recovery = lookup(replica.value, "point_in_time_recovery", null)
}
}
server_side_encryption {
enabled = var.server_side_encryption_enabled
kms_key_arn = var.server_side_encryption_kms_key_arn
}
dynamic "import_table" {
for_each = length(var.import_table) > 0 ? [var.import_table] : []
content {
input_format = import_table.value.input_format
input_compression_type = try(import_table.value.input_compression_type, null)
dynamic "input_format_options" {
for_each = try([import_table.value.input_format_options], [])
content {
dynamic "csv" {
for_each = try([input_format_options.value.csv], [])
content {
delimiter = try(csv.value.delimiter, null)
header_list = try(csv.value.header_list, null)
}
}
}
}
s3_bucket_source {
bucket = import_table.value.bucket
bucket_owner = try(import_table.value.bucket_owner, null)
key_prefix = try(import_table.value.key_prefix, null)
}
}
}
dynamic "on_demand_throughput" {
for_each = length(var.on_demand_throughput) > 0 ? [var.on_demand_throughput] : []
content {
max_read_request_units = try(on_demand_throughput.value.max_read_request_units, null)
max_write_request_units = try(on_demand_throughput.value.max_write_request_units, null)
}
}
tags = merge(
var.tags,
{
"Name" = format("%s", var.name)
},
)
timeouts {
create = lookup(var.timeouts, "create", null)
delete = lookup(var.timeouts, "delete", null)
update = lookup(var.timeouts, "update", null)
}
}
resource "aws_dynamodb_table" "autoscaled" {
count = var.create_table && var.autoscaling_enabled && !var.ignore_changes_global_secondary_index ? 1 : 0
name = var.name
billing_mode = var.billing_mode
hash_key = var.hash_key
range_key = var.range_key
read_capacity = var.read_capacity
write_capacity = var.write_capacity
stream_enabled = var.stream_enabled
stream_view_type = var.stream_view_type
table_class = var.table_class
deletion_protection_enabled = var.deletion_protection_enabled
restore_date_time = var.restore_date_time
restore_source_name = var.restore_source_name
restore_source_table_arn = var.restore_source_table_arn
restore_to_latest_time = var.restore_to_latest_time
ttl {
enabled = var.ttl_enabled
attribute_name = var.ttl_attribute_name
}
point_in_time_recovery {
enabled = var.point_in_time_recovery_enabled
}
dynamic "attribute" {
for_each = var.attributes
content {
name = attribute.value.name
type = attribute.value.type
}
}
dynamic "local_secondary_index" {
for_each = var.local_secondary_indexes
content {
name = local_secondary_index.value.name
range_key = local_secondary_index.value.range_key
projection_type = local_secondary_index.value.projection_type
non_key_attributes = lookup(local_secondary_index.value, "non_key_attributes", null)
}
}
dynamic "global_secondary_index" {
for_each = var.global_secondary_indexes
content {
name = global_secondary_index.value.name
hash_key = global_secondary_index.value.hash_key
projection_type = global_secondary_index.value.projection_type
range_key = lookup(global_secondary_index.value, "range_key", null)
read_capacity = lookup(global_secondary_index.value, "read_capacity", null)
write_capacity = lookup(global_secondary_index.value, "write_capacity", null)
non_key_attributes = lookup(global_secondary_index.value, "non_key_attributes", null)
dynamic "on_demand_throughput" {
for_each = try([global_secondary_index.value.on_demand_throughput], [])
content {
max_read_request_units = try(on_demand_throughput.value.max_read_request_units, null)
max_write_request_units = try(on_demand_throughput.value.max_write_request_units, null)
}
}
}
}
dynamic "replica" {
for_each = var.replica_regions
content {
region_name = replica.value.region_name
kms_key_arn = lookup(replica.value, "kms_key_arn", null)
propagate_tags = lookup(replica.value, "propagate_tags", null)
point_in_time_recovery = lookup(replica.value, "point_in_time_recovery", null)
}
}
server_side_encryption {
enabled = var.server_side_encryption_enabled
kms_key_arn = var.server_side_encryption_kms_key_arn
}
dynamic "import_table" {
for_each = length(var.import_table) > 0 ? [var.import_table] : []
content {
input_format = import_table.value.input_format
input_compression_type = try(import_table.value.input_compression_type, null)
dynamic "input_format_options" {
for_each = try([import_table.value.input_format_options], [])
content {
dynamic "csv" {
for_each = try([input_format_options.value.csv], [])
content {
delimiter = try(csv.value.delimiter, null)
header_list = try(csv.value.header_list, null)
}
}
}
}
s3_bucket_source {
bucket = import_table.value.bucket
bucket_owner = try(import_table.value.bucket_owner, null)
key_prefix = try(import_table.value.key_prefix, null)
}
}
}
dynamic "on_demand_throughput" {
for_each = length(var.on_demand_throughput) > 0 ? [var.on_demand_throughput] : []
content {
max_read_request_units = try(on_demand_throughput.value.max_read_request_units, null)
max_write_request_units = try(on_demand_throughput.value.max_write_request_units, null)
}
}
tags = merge(
var.tags,
{
"Name" = format("%s", var.name)
},
)
timeouts {
create = lookup(var.timeouts, "create", null)
delete = lookup(var.timeouts, "delete", null)
update = lookup(var.timeouts, "update", null)
}
lifecycle {
ignore_changes = [read_capacity, write_capacity]
}
}
resource "aws_dynamodb_table" "autoscaled_gsi_ignore" {
count = var.create_table && var.autoscaling_enabled && var.ignore_changes_global_secondary_index ? 1 : 0
name = var.name
billing_mode = var.billing_mode
hash_key = var.hash_key
range_key = var.range_key
read_capacity = var.read_capacity
write_capacity = var.write_capacity
stream_enabled = var.stream_enabled
stream_view_type = var.stream_view_type
table_class = var.table_class
deletion_protection_enabled = var.deletion_protection_enabled
restore_date_time = var.restore_date_time
restore_source_name = var.restore_source_name
restore_source_table_arn = var.restore_source_table_arn
restore_to_latest_time = var.restore_to_latest_time
ttl {
enabled = var.ttl_enabled
attribute_name = var.ttl_attribute_name
}
point_in_time_recovery {
enabled = var.point_in_time_recovery_enabled
}
dynamic "attribute" {
for_each = var.attributes
content {
name = attribute.value.name
type = attribute.value.type
}
}
dynamic "local_secondary_index" {
for_each = var.local_secondary_indexes
content {
name = local_secondary_index.value.name
range_key = local_secondary_index.value.range_key
projection_type = local_secondary_index.value.projection_type
non_key_attributes = lookup(local_secondary_index.value, "non_key_attributes", null)
}
}
dynamic "global_secondary_index" {
for_each = var.global_secondary_indexes
content {
name = global_secondary_index.value.name
hash_key = global_secondary_index.value.hash_key
projection_type = global_secondary_index.value.projection_type
range_key = lookup(global_secondary_index.value, "range_key", null)
read_capacity = lookup(global_secondary_index.value, "read_capacity", null)
write_capacity = lookup(global_secondary_index.value, "write_capacity", null)
non_key_attributes = lookup(global_secondary_index.value, "non_key_attributes", null)
}
}
dynamic "replica" {
for_each = var.replica_regions
content {
region_name = replica.value.region_name
kms_key_arn = lookup(replica.value, "kms_key_arn", null)
propagate_tags = lookup(replica.value, "propagate_tags", null)
point_in_time_recovery = lookup(replica.value, "point_in_time_recovery", null)
}
}
server_side_encryption {
enabled = var.server_side_encryption_enabled
kms_key_arn = var.server_side_encryption_kms_key_arn
}
tags = merge(
var.tags,
{
"Name" = format("%s", var.name)
},
)
timeouts {
create = lookup(var.timeouts, "create", null)
delete = lookup(var.timeouts, "delete", null)
update = lookup(var.timeouts, "update", null)
}
lifecycle {
ignore_changes = [global_secondary_index, read_capacity, write_capacity]
}
}