-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdestination-bucket.tf
73 lines (70 loc) · 2.27 KB
/
destination-bucket.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
resource "aws_s3_bucket" "destination_example" {
provider = aws.destination
bucket = "this-example-destination"
}
resource "aws_s3_bucket_versioning" "destination_example" {
provider = aws.destination
bucket = aws_s3_bucket.destination_example.id
versioning_configuration {
status = "Enabled"
}
}
resource "aws_s3_bucket_acl" "destination_example" {
provider = aws.destination
bucket = aws_s3_bucket.destination_example.id
acl = "private"
}
resource "aws_s3_bucket_policy" "destination_example" {
provider = aws.destination
bucket = aws_s3_bucket.destination_example.id
policy = <<POLICY
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "bucket",
"Effect": "Allow",
"Principal": {
"AWS": [
"${aws_iam_role.destination.arn}",
"${aws_iam_role.source.arn}"
]
},
"Action": [
"s3:GetBucketLocation",
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:AbortMultipartUpload",
"s3:DeleteObject",
"s3:GetObject",
"s3:ListMultipartUploadParts",
"s3:PutObjectTagging",
"s3:GetObjectTagging",
"s3:PutObject"
],
"Resource": [
"${aws_s3_bucket.destination_example.arn}",
"${aws_s3_bucket.destination_example.arn}/*"
]
},
{
"Sid": "terraform",
"Effect": "Allow",
"Principal": {
"AWS": [
"${data.aws_caller_identity.destination.arn}",
"${data.aws_caller_identity.source.arn}"
]
},
"Action": [
"s3:ListBucket"
],
"Resource": [
"${aws_s3_bucket.destination_example.arn}",
"${aws_s3_bucket.destination_example.arn}/*"
]
}
]
}
POLICY
}