-
Notifications
You must be signed in to change notification settings - Fork 11
/
iam.tf
98 lines (82 loc) · 2.09 KB
/
iam.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
# This file contains the following IAM resources:
# 1. Role, Role Policy for Storage Integration
# ---------------------------------------------
# 1. Role, Role Policy for Storage Integration.
# ---------------------------------------------
resource "aws_iam_role" "s3_reader" {
name = local.s3_reader_role_name
path = "/"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
AWS = local.storage_integration_user_arn
}
Condition = {
StringEquals = {
"sts:ExternalId" = local.storage_integration_external_id
}
}
}
]
})
}
data "aws_iam_policy_document" "s3_reader_policy_doc" {
# Write logs to cloudwatch
statement {
sid = "S3ReadWritePerms"
effect = "Allow"
resources = ["${aws_s3_bucket.geff_bucket.arn}/*"]
actions = [
"s3:PutObject",
"s3:GetObject",
"s3:GetObjectVersion",
]
}
statement {
sid = "S3ListPerms"
effect = "Allow"
resources = [aws_s3_bucket.geff_bucket.arn]
actions = ["s3:ListBucket"]
condition {
test = "StringLike"
variable = "s3:prefix"
values = ["*"]
}
}
dynamic "statement" {
for_each = var.data_bucket_arns
content {
sid = "S3ReadWritePerms${statement.key}"
effect = "Allow"
resources = ["${statement.value}/*"]
actions = [
"s3:PutObject",
"s3:GetObject",
"s3:GetObjectVersion",
]
}
}
dynamic "statement" {
for_each = var.data_bucket_arns
content {
sid = "S3ListPerms${statement.key}"
effect = "Allow"
resources = [statement.value]
actions = ["s3:ListBucket"]
condition {
test = "StringLike"
variable = "s3:prefix"
values = ["*"]
}
}
}
}
resource "aws_iam_role_policy" "s3_reader" {
name = local.s3_bucket_policy_name
role = aws_iam_role.s3_reader.id
policy = data.aws_iam_policy_document.s3_reader_policy_doc.json
}