Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 93e8d27

Browse files
gnawhleinadnpalm
andauthored
fix: adding missing permissions to boundaries (#3873)
`setup-iam-permissions`: add missing `iam:TagInstanceProfile` required for `aws_iam_instance_profile "runner"` The `aws_iam_instance_profile` resource in https://github.com/philips-labs/terraform-aws-github-runner/blob/74471de59ac97748581612efa62c3950344916f4/modules/runners/policies-runner.tf#L11-L16 requires the `iam:TagInstanceProfile` permission. Co-authored-by: Niek Palm <[email protected]>
1 parent 9b4937c commit 93e8d27

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: modules/setup-iam-permissions/policies/deploy-boundary.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@
5252
"iam:RemoveRoleFromInstanceProfile",
5353
"iam:DeleteInstanceProfile",
5454
"iam:AddRoleToInstanceProfile",
55-
"iam:GetInstanceProfile"
55+
"iam:GetInstanceProfile",
56+
"iam:TagInstanceProfile"
5657
],
5758
"Resource": "arn:${aws_partition}:iam::${account_id}:instance-profile/${instance_profile_namespace}/*"
5859
},

0 commit comments

Comments
 (0)