generated from dxw/terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecs-cluster-infrastructure-service-build-pipeline-s3-artifact-store.tf
99 lines (78 loc) · 3.75 KB
/
ecs-cluster-infrastructure-service-build-pipeline-s3-artifact-store.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
resource "aws_s3_bucket" "infrastructure_ecs_cluster_service_build_pipeline_artifact_store" {
count = length(local.infrastructure_ecs_cluster_services) != 0 ? 1 : 0
bucket = "${local.resource_prefix_hash}-ecs-cluster-service-build-pipeline-artifact-store"
}
resource "aws_s3_bucket_policy" "infrastructure_ecs_cluster_service_build_pipeline_artifact_store" {
count = length(local.infrastructure_ecs_cluster_services) != 0 ? 1 : 0
bucket = aws_s3_bucket.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[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.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[0].arn
}
)}${local.infrastructure_vpc_flow_logs_cloudwatch_logs && local.infrastructure_kms_encryption ? "," : ""}
${templatefile("${path.root}/policies/s3-bucket-policy-statements/enforce-kms-encryption.json.tpl",
{
bucket_arn = local.infrastructure_kms_encryption ? aws_s3_bucket.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[0].arn : ""
}
)}
]
EOT
}
)
}
resource "aws_s3_bucket_public_access_block" "infrastructure_ecs_cluster_service_build_pipeline_artifact_store" {
count = length(local.infrastructure_ecs_cluster_services) != 0 ? 1 : 0
bucket = aws_s3_bucket.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[0].id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}
resource "aws_s3_bucket_versioning" "infrastructure_ecs_cluster_service_build_pipeline_artifact_store" {
count = length(local.infrastructure_ecs_cluster_services) != 0 ? 1 : 0
bucket = aws_s3_bucket.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[0].id
versioning_configuration {
status = "Enabled"
}
}
resource "aws_s3_bucket_logging" "infrastructure_ecs_cluster_service_build_pipeline_artifact_store" {
count = length(local.infrastructure_ecs_cluster_services) != 0 ? 1 : 0
bucket = aws_s3_bucket.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[0].id
target_bucket = aws_s3_bucket.infrastructure_logs[0].id
target_prefix = "s3/infrastructure-ecs-cluster-service-build-pipeline-artifact-store"
}
# because infrastructure_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" "infrastructure_ecs_cluster_service_build_pipeline_artifact_store" {
count = length(local.infrastructure_ecs_cluster_services) != 0 ? 1 : 0
bucket = aws_s3_bucket.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[0].id
rule {
apply_server_side_encryption_by_default {
kms_master_key_id = local.infrastructure_kms_encryption ? aws_kms_key.infrastructure[0].arn : null
sse_algorithm = local.infrastructure_kms_encryption ? "aws:kms" : "AES256"
}
}
}
resource "aws_s3_bucket_lifecycle_configuration" "infrastructure_ecs_cluster_service_build_pipeline_artifact_store" {
count = length(local.infrastructure_ecs_cluster_services) != 0 ? 1 : 0
bucket = aws_s3_bucket.infrastructure_ecs_cluster_service_build_pipeline_artifact_store[0].id
rule {
id = "transition-to-ia-then-glacier"
transition {
days = 30
storage_class = "STANDARD_IA"
}
transition {
days = 60
storage_class = "GLACIER"
}
status = "Enabled"
}
}