-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrds.tf
44 lines (39 loc) · 995 Bytes
/
rds.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
data "aws_iam_policy_document" "rds_for_github" {
statement {
sid = "AllowListDescribe"
effect = "Allow"
actions = [
"rds:Describe*",
"rds:ListTagsForResource",
]
resources = ["*"]
}
statement {
sid = "AllowGetOwn"
effect = "Allow"
actions = [
"rds:CreateDBSnapshot",
"rds:DownloadCompleteDBLogFile",
"rds:DownloadDBLogFilePortion",
"rds:ModifyDBInstance",
"rds:RebootDBInstance"
]
resources = ["*"]
condition {
test = "StringLike"
variable = "aws:PrincipalTag/GithubTeam"
values = ["*:$${aws:ResourceTag/GithubTeam}:*"]
}
}
}
resource "aws_iam_policy" "rds_for_github" {
policy = data.aws_iam_policy_document.rds_for_github.json
name = "rds-for-github"
tags = {
GithubTeam = "webops"
}
}
resource "aws_iam_role_policy_attachment" "rds_for_github" {
role = aws_iam_role.github_access.name
policy_arn = aws_iam_policy.rds_for_github.arn
}