-
Notifications
You must be signed in to change notification settings - Fork 0
/
glue.tf
74 lines (61 loc) · 1.65 KB
/
glue.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
resource "aws_glue_job" "raw-to-conform" {
name = "raw-to-conform-job"
role_arn = "${aws_iam_role.raw-to-conform.arn}"
command {
script_location = "s3://${aws_s3_bucket.glue-bucket.bucket}/raw-to-conform.py"
}
}
resource "aws_iam_role" "raw-to-conform" {
name = "AWSGlueServiceRoleDefault2"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "glue.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
resource "aws_iam_role_policy_attachment" "glue_service" {
role = "${aws_iam_role.raw-to-conform.id}"
policy_arn = "arn:aws:iam::aws:policy/service-role/AWSGlueServiceRole"
}
resource "aws_iam_role_policy_attachment" "glue_service2" {
role = "${aws_iam_role.raw-to-conform.id}"
policy_arn = "arn:aws:iam::aws:policy/AmazonS3FullAccess"
}
resource "aws_glue_crawler" "raw-to-conform" {
database_name = "${aws_glue_catalog_database.raw.name}"
name = "raw-to-conform"
role = "${aws_iam_role.raw-to-conform.arn}"
s3_target {
path = "s3://${aws_s3_bucket.raw-bucket.bucket}"
}
tags = "${merge(
local.common_tags
)}"
}
resource "aws_glue_crawler" "conform" {
database_name = "${aws_glue_catalog_database.conform.name}"
name = "conform"
role = "${aws_iam_role.raw-to-conform.arn}"
s3_target {
path = "s3://${aws_s3_bucket.conform-bucket.bucket}"
}
tags = "${merge(
local.common_tags
)}"
}
resource "aws_glue_catalog_database" "raw" {
name = "raw"
}
resource "aws_glue_catalog_database" "conform" {
name = "conform"
}