-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
45 lines (37 loc) · 1.11 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
resource "aws_athena_workgroup" "this" {
name = var.workgroup_name
force_destroy = local.force_destroy_value
configuration {
publish_cloudwatch_metrics_enabled = local.publish_cloudwatch_metrics_enabled_value
result_configuration {
output_location = local.query_results_bucket_location
}
}
}
resource "aws_glue_catalog_database" "this" {
name = var.database_name
}
resource "aws_glue_catalog_table" "alb_logs" {
for_each = local.tables
name = each.key
database_name = aws_glue_catalog_database.this.name
table_type = local.table_type
parameters = each.value.parameters
storage_descriptor {
location = each.value.location
input_format = local.input_format
output_format = local.output_format
ser_de_info {
name = each.value.ser_de_name
serialization_library = each.value.ser_de_serialization_library
parameters = each.value.ser_de_params
}
dynamic "columns" {
for_each = each.value.columns
content {
name = columns.value.name
type = columns.value.type
}
}
}
}