generated from dxw/terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudformation-custom-stack-s3-template-store.tf
67 lines (53 loc) · 2.24 KB
/
cloudformation-custom-stack-s3-template-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
resource "aws_s3_bucket" "cloudformation_custom_stack_template_store" {
count = local.enable_cloudformatian_s3_template_store ? 1 : 0
bucket = "${local.resource_prefix_hash}-cloudformation-custom-stack-templates"
}
resource "aws_s3_bucket_policy" "cloudformation_custom_stack_template_store" {
count = local.enable_cloudformatian_s3_template_store ? 1 : 0
bucket = aws_s3_bucket.cloudformation_custom_stack_template_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.cloudformation_custom_stack_template_store[0].arn
}
)}
]
EOT
}
)
}
resource "aws_s3_bucket_public_access_block" "cloudformation_custom_stack_template_store" {
count = local.enable_cloudformatian_s3_template_store ? 1 : 0
bucket = aws_s3_bucket.cloudformation_custom_stack_template_store[0].id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}
resource "aws_s3_bucket_versioning" "cloudformation_custom_stack_template_store" {
count = local.enable_cloudformatian_s3_template_store ? 1 : 0
bucket = aws_s3_bucket.cloudformation_custom_stack_template_store[0].id
versioning_configuration {
status = "Enabled"
}
}
resource "aws_s3_bucket_logging" "cloudformation_custom_stack_template_store" {
count = local.enable_cloudformatian_s3_template_store ? 1 : 0
bucket = aws_s3_bucket.cloudformation_custom_stack_template_store[0].id
target_bucket = aws_s3_bucket.infrastructure_logs[0].id
target_prefix = "s3/cloudformation-custom-stack-templates"
}
resource "aws_s3_bucket_server_side_encryption_configuration" "cloudformation_custom_stack_template_store" {
count = local.enable_cloudformatian_s3_template_store ? 1 : 0
bucket = aws_s3_bucket.cloudformation_custom_stack_template_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"
}
}
}