-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoidc-role.tf
70 lines (67 loc) · 1.62 KB
/
oidc-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
61
62
63
64
65
66
67
68
69
70
resource "aws_iam_role" "oidc-role" {
name = "oidc-role"
assume_role_policy = jsonencode(
{
Statement = [
{
Action = "sts:AssumeRoleWithWebIdentity"
Condition = {
StringEquals = {
"token.actions.githubusercontent.com:aud" = "sts.amazonaws.com"
}
StringLike = {
"token.actions.githubusercontent.com:sub" = "repo:openn-ai/*"
}
}
Effect = "Allow"
Principal = {
Federated = "arn:aws:iam::854955106828:oidc-provider/token.actions.githubusercontent.com"
}
},
]
Version = "2012-10-17"
}
)
}
resource "aws_iam_role_policy" "openn-ai-management" {
name = "openn-ai-management"
role = aws_iam_role.oidc-role.id
policy = jsonencode(
{
Statement = [
{
Action = ["s3:Get*", "s3:List*", "s3:PutObject"]
Effect = "Allow"
Resource = [
aws_s3_bucket.openn-ai.arn,
"${aws_s3_bucket.openn-ai.arn}/*"
]
},
]
Version = "2012-10-17"
}
)
}
resource "aws_iam_role_policy" "oidc-iam-get-role-policy" {
name = "oidc-policies"
role = aws_iam_role.oidc-role.id
policy = jsonencode(
{
Statement = [
{
Action = ["iam:Get*", "iam:List*"]
Effect = "Allow"
Resource = [
"arn:aws:iam::${var.account_id}:role/*",
"arn:aws:iam::${var.account_id}:policy/*"
]
},
{
Action = ["ec2:Describe*"]
Effect = "Allow"
Resource = "*"
}
]
}
)
}