-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiam_github_actions_role.tf
More file actions
66 lines (66 loc) · 2.27 KB
/
iam_github_actions_role.tf
File metadata and controls
66 lines (66 loc) · 2.27 KB
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
resource "aws_iam_role" "github_actions" {
name = "${terraform.workspace}-github-actions-role"
description = "This role provides access for GitHub Actions to the ${terraform.workspace} environment. "
force_detach_policies = false
max_session_duration = 3600
name_prefix = null
path = "/"
permissions_boundary = null
tags = {}
assume_role_policy = local.is_sandbox_or_dev ? jsonencode(
{
Statement = [
{
Action = "sts:AssumeRoleWithWebIdentity"
Condition = {
StringEquals = {
"token.actions.githubusercontent.com:aud" = "sts.amazonaws.com"
}
StringLike = {
"token.actions.githubusercontent.com:sub" = [
"repo:NHSDigital/national-document-repository-infrastructure:*",
"repo:NHSDigital/national-document-repository:*",
]
}
}
Effect = "Allow"
Principal = {
Federated = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:oidc-provider/token.actions.githubusercontent.com"
}
},
{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
AWS = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:role/aws-reserved/sso.amazonaws.com/eu-west-2/AWSReservedSSO_DomainCGpit-Administrators_e00623801cb4b59e"
}
},
]
Version = "2012-10-17"
}
) : jsonencode(
{
Statement = [
{
Action = "sts:AssumeRoleWithWebIdentity"
Condition = {
StringEquals = {
"token.actions.githubusercontent.com:aud" = "sts.amazonaws.com"
}
StringLike = {
"token.actions.githubusercontent.com:sub" = [
"repo:NHSDigital/national-document-repository-infrastructure:*",
"repo:NHSDigital/national-document-repository:*",
]
}
}
Effect = "Allow"
Principal = {
Federated = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:oidc-provider/token.actions.githubusercontent.com"
}
},
]
Version = "2012-10-17"
}
)
}