-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paths3.tf
51 lines (42 loc) · 1.14 KB
/
s3.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
resource "aws_s3_bucket" "sre_lb_logs" {
bucket = "sre-lb-1002"
force_destroy = true
tags = {
Name = "My bucket"
Environment = "Dev"
}
}
resource "aws_s3_bucket_public_access_block" "my_bucket_block" {
bucket = aws_s3_bucket.sre_lb_logs.bucket
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}
resource "aws_s3_bucket_server_side_encryption_configuration" "sre_sse" {
bucket = aws_s3_bucket.sre_lb_logs.bucket
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
resource "aws_s3_bucket_policy" "allow_access_from_another_account" {
bucket = aws_s3_bucket.sre_lb_logs.id
policy = data.aws_iam_policy_document.allow_access_from_another_account.json
}
data "aws_iam_policy_document" "allow_access_from_another_account" {
statement {
principals {
type = "AWS"
identifiers = ["arn:aws:iam::127311923021:root"]
}
actions = [
"s3:PutObject"
]
resources = [
aws_s3_bucket.sre_lb_logs.arn,
"${aws_s3_bucket.sre_lb_logs.arn}/*",
]
}
}