-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglue_sync.tf
200 lines (179 loc) · 5.54 KB
/
glue_sync.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
data "aws_iam_policy_document" "glue_sync_sqs" {
count = var.enable_glue_sync ? 1 : 0
statement {
effect = "Allow"
principals {
type = "*"
identifiers = ["*"]
}
actions = ["sqs:SendMessage", "sqs:ReceiveMessage"]
resources = ["arn:aws:sqs:*:*:${var.glue_sync_config.sqs_queue_name}"]
condition {
test = "ArnEquals"
variable = "aws:SourceArn"
values = [var.glue_sync_config.sns_topic_arn]
}
}
}
data "aws_iam_policy_document" "glue_sync_sqs_dl" {
count = var.enable_glue_sync ? 1 : 0
statement {
effect = "Allow"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = ["sqs:SendMessage", "sqs:ReceiveMessage"]
resources = ["arn:aws:sqs:*:*:${var.glue_sync_config.sqs_queue_name_dl}"]
condition {
test = "ForAllValues:StringEquals"
variable = "aws:SourceArn"
values = ["arn:aws:sqs:*:*:${var.glue_sync_config.sqs_queue_name}"]
}
}
}
resource "aws_sqs_queue" "glue_sync" {
count = var.enable_glue_sync ? 1 : 0
name = var.glue_sync_config.sqs_queue_name
policy = data.aws_iam_policy_document.glue_sync_sqs[0].json
visibility_timeout_seconds = var.sqs_visibility_timeout_seconds
delay_seconds = var.sqs_delay_seconds
redrive_policy = jsonencode({
deadLetterTargetArn = aws_sqs_queue.glue_sync_dl[0].arn
maxReceiveCount = var.sqs_redrive_policy_maxReceiveCount
})
tags = var.tags
}
resource "aws_sqs_queue" "glue_sync_dl" {
count = var.enable_glue_sync ? 1 : 0
name = var.glue_sync_config.sqs_queue_name_dl
policy = data.aws_iam_policy_document.glue_sync_sqs_dl[0].json
tags = var.tags
}
resource "aws_sqs_queue_redrive_allow_policy" "glue_syncredrive_allow_policy" {
count = var.enable_glue_sync ? 1 : 0
queue_url = aws_sqs_queue.glue_sync_dl[0].id
redrive_allow_policy = jsonencode({
redrivePermission = "byQueue",
sourceQueueArns = [aws_sqs_queue.glue_sync[0].arn]
})
}
resource "aws_sns_topic_subscription" "glue_sync_sns_sub" {
count = var.enable_glue_sync ? 1 : 0
topic_arn = var.glue_sync_config.sns_topic_arn
protocol = "sqs"
endpoint = aws_sqs_queue.glue_sync[0].arn
}
data "aws_iam_policy_document" "glue_sync_assume" {
count = var.enable_glue_sync ? 1 : 0
statement {
effect = "Allow"
principals {
type = "Service"
identifiers = ["lambda.amazonaws.com"]
}
actions = [
"sts:AssumeRole",
]
}
}
data "aws_iam_policy_document" "glue_sync" {
count = var.enable_glue_sync ? 1 : 0
statement {
sid = "GlueAllowTables"
effect = "Allow"
actions = [
"glue:GetTable",
"glue:GetTables",
"glue:GetPartitions",
"glue:CreateTable",
"glue:UpdateTable"
]
resources = [
"arn:aws:glue:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:catalog",
"arn:aws:glue:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:database/*",
"arn:aws:glue:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:table/*"
]
}
statement {
sid = "GlueCatalogAllowDatabases"
effect = "Allow"
actions = [
"glue:GetDatabase",
"glue:GetDatabases",
"glue:CreateDatabase"
]
resources = [
"*"
]
}
statement {
sid = "TableExtLocS3RO"
effect = "Allow"
actions = [
"s3:GetObject",
"s3:GetObjectTagging",
"s3:GetObjectVersion",
"s3:GetBucketLocation",
"s3:ListBucket",
"s3:ListBucketVersions"
]
resources = [
var.warehouse_bucket_arn,
"${var.warehouse_bucket_arn}/${var.s3_path}/*"
]
}
statement {
effect = "Allow"
actions = ["sqs:*"]
resources = [aws_sqs_queue.glue_sync[0].arn]
}
statement {
effect = "Allow"
actions = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
]
resources = ["*"]
}
}
resource "aws_iam_policy" "glue_sync_managed" {
count = var.enable_glue_sync ? 1 : 0
name = var.glue_sync_config.iam_policy_name
description = "Glue create policy allows access to Athena and S3"
policy = data.aws_iam_policy_document.glue_sync[0].json
tags = var.tags
}
resource "aws_iam_role" "glue_sync" {
count = var.enable_glue_sync ? 1 : 0
name = var.glue_sync_config.iam_role_name
assume_role_policy = data.aws_iam_policy_document.glue_sync_assume[0].json
managed_policy_arns = [aws_iam_policy.glue_sync_managed[0].arn]
tags = var.tags
}
resource "aws_lambda_function" "glue_sync_lambda" {
count = var.enable_glue_sync ? 1 : 0
architectures = var.architectures
description = "Greate tables in AWS Glue catalog based on the table prefix"
s3_key = var.glue_sync_config.lambda_s3_key
s3_bucket = var.glue_sync_config.lambda_s3_bucket
function_name = var.glue_sync_config.lambda_function_name
role = aws_iam_role.glue_sync[0].arn
handler = "provided"
runtime = "provided.al2023"
memory_size = var.lambda_memory_size
timeout = var.lambda_timeout
environment {
variables = {
RUST_LOG = var.rust_log_oxbow_debug_level
GLUE_PATH_REGEX = var.glue_sync_config.path_regex
UNWRAP_SNS_ENVELOPE = true
}
}
}
resource "aws_lambda_event_source_mapping" "glue_sync" {
count = var.enable_glue_sync ? 1 : 0
event_source_arn = aws_sqs_queue.glue_sync[0].arn
function_name = aws_lambda_function.glue_sync_lambda[0].arn
}