-
Notifications
You must be signed in to change notification settings - Fork 2
/
iam-source.tf
149 lines (128 loc) · 4.47 KB
/
iam-source.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
data "aws_iam_user" "user" {
count = var.create_user ? 0 : 1
user_name = var.user_name
}
resource "aws_iam_policy" "user_policy" {
name_prefix = "${var.user_name}-"
policy = local.policy
}
resource "aws_iam_user" "user" {
count = var.create_user ? 1 : 0
name = var.user_name
force_destroy = var.force_destroy
}
resource "aws_iam_user_policy_attachment" "user_policy" {
user = aws_iam_user.user[0].name
policy_arn = aws_iam_policy.user_policy.arn
}
resource "aws_iam_access_key" "key" {
user = aws_iam_user.user[0].name
}
data "aws_iam_policy_document" "user_policy_read" {
statement {
actions = [
"s3:ListBucket",
]
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibility in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
resources = [
local.bucket_arn,
]
condition {
test = "ForAnyValue:StringLike"
variable = "s3:prefix"
values = [
"${var.prefix}*",
]
}
}
}
data "aws_iam_policy_document" "user_policy_read_write" {
statement {
actions = [
"s3:PutObject",
]
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibility in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
resources = [
local.object_arn,
]
}
statement {
actions = [
"s3:ListBucket",
]
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibility in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
resources = [
local.bucket_arn,
]
condition {
test = "ForAnyValue:StringLike"
variable = "s3:prefix"
values = [
"${var.prefix}*",
]
}
}
}
data "aws_iam_policy_document" "user_policy_read_write_delete" {
statement {
actions = [
"s3:PutObject",
"s3:DeleteObject",
]
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibility in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
resources = [
local.object_arn,
]
}
statement {
actions = [
"s3:ListBucket",
]
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibility in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
resources = [
local.bucket_arn,
]
condition {
test = "ForAnyValue:StringLike"
variable = "s3:prefix"
values = [
"${var.prefix}*",
]
}
}
}