-
Notifications
You must be signed in to change notification settings - Fork 1
/
destination-role.tf
60 lines (57 loc) · 1.34 KB
/
destination-role.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
resource "aws_iam_role" "destination" {
provider = aws.destination
name = "this_destination_s3_sync_role"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Action = "sts:AssumeRole"
Effect = "Allow"
Sid = ""
Principal = {
Service = "datasync.amazonaws.com"
}
}
]
})
managed_policy_arns = [aws_iam_policy.destination.arn]
}
resource "aws_iam_policy" "destination" {
provider = aws.destination
name = "this_destination_s3_sync_policy"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
"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.source_example.arn}/*",
"${aws_s3_bucket.source_example.arn}",
"${aws_s3_bucket.destination_example.arn}/*",
"${aws_s3_bucket.destination_example.arn}"
]
},
{
"Sid": "allowalldatasync",
"Effect": "Allow",
"Action": [
"datasync:*"
],
"Resource": "*"
}
]
}
EOF
}