generated from dxw/terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths3-athena-cloudtrail-output.tf
117 lines (91 loc) · 3.41 KB
/
s3-athena-cloudtrail-output.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
resource "aws_kms_key" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_s3_output_kms_encryption ? 1 : 0
description = "This key is used to encrypt bucket objects in ${aws_s3_bucket.athena_cloudtrail_output[0].id}"
deletion_window_in_days = 10
enable_key_rotation = true
}
resource "aws_kms_alias" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_s3_output_kms_encryption ? 1 : 0
name = "alias/${local.project_name}-athena-cloudtrail-output"
target_key_id = aws_kms_key.athena_cloudtrail_output[0].key_id
}
resource "aws_s3_bucket" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_glue_tables ? 1 : 0
bucket = "${local.aws_account_id}-${local.project_name}-athena-cloudtrail-output"
}
resource "aws_s3_bucket_policy" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_glue_tables ? 1 : 0
bucket = aws_s3_bucket.athena_cloudtrail_output[0].id
policy = templatefile(
"${path.module}/policies/s3-bucket-policy.json.tpl",
{
statement = <<EOT
[
${templatefile("${path.root}/policies/s3-bucket-policy-statements/enforce-tls.json.tpl", {
bucket_arn = aws_s3_bucket.athena_cloudtrail_output[0].arn,
})}
]
EOT
}
)
}
resource "aws_s3_bucket_public_access_block" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_glue_tables ? 1 : 0
bucket = aws_s3_bucket.athena_cloudtrail_output[0].id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}
resource "aws_s3_bucket_versioning" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_glue_tables ? 1 : 0
bucket = aws_s3_bucket.athena_cloudtrail_output[0].id
versioning_configuration {
status = "Enabled"
}
}
resource "aws_s3_bucket_logging" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_glue_tables ? 1 : 0
bucket = aws_s3_bucket.athena_cloudtrail_output[0].id
target_bucket = aws_s3_bucket.logs[0].id
target_prefix = "s3/athena-cloudtrail-output"
}
# because cloudtrail_athena_s3_output_kms_encryption is only true when multiple other
# vars are true, tfsec can't figure out that this will actually have kms encryption when
# enabled
#tfsec:ignore:aws-s3-encryption-customer-key tfsec:ignore:aws-s3-enable-bucket-encryption
resource "aws_s3_bucket_server_side_encryption_configuration" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_glue_tables ? 1 : 0
bucket = aws_s3_bucket.athena_cloudtrail_output[0].id
dynamic "rule" {
for_each = local.cloudtrail_athena_s3_output_kms_encryption ? [1] : []
content {
apply_server_side_encryption_by_default {
kms_master_key_id = aws_kms_key.athena_cloudtrail_output[0].arn
sse_algorithm = "aws:kms"
}
}
}
dynamic "rule" {
for_each = local.cloudtrail_athena_s3_output_kms_encryption ? [] : [1]
content {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
}
resource "aws_s3_bucket_lifecycle_configuration" "athena_cloudtrail_output" {
count = local.cloudtrail_athena_glue_tables && local.cloudtrail_athena_s3_output_retention != 0 ? 1 : 0
bucket = aws_s3_bucket.athena_cloudtrail_output[0].id
rule {
id = "all_expire"
filter {
prefix = ""
}
expiration {
days = local.cloudtrail_athena_s3_output_retention
}
status = "Enabled"
}
}