Skip to content

Commit

Permalink
fix: Trigger release for adding ec2:DescribeInstanceTypes patched in
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Mar 2, 2022
1 parent 0ac7f4d commit 0f5979f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions modules/iam-role-for-service-accounts-eks/policies.tf
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ data "aws_iam_policy_document" "ebs_csi" {
variable = "ec2:CreateAction"
values = [
"CreateVolume",
"CreateSnapshot"
"CreateSnapshot",
]
}
}
Expand Down Expand Up @@ -253,7 +253,7 @@ data "aws_iam_policy_document" "ebs_csi" {
actions = [
"kms:CreateGrant",
"kms:ListGrants",
"kms:RevokeGrant"
"kms:RevokeGrant",
]

resources = statement.value
Expand All @@ -274,7 +274,7 @@ data "aws_iam_policy_document" "ebs_csi" {
"kms:Decrypt",
"kms:ReEncrypt*",
"kms:GenerateDataKey*",
"kms:DescribeKey"
"kms:DescribeKey",
]

resources = statement.value
Expand Down Expand Up @@ -323,7 +323,7 @@ data "aws_iam_policy_document" "vpc_cni" {
"ec2:DescribeInstanceTypes",
"ec2:DetachNetworkInterface",
"ec2:ModifyNetworkInterfaceAttribute",
"ec2:UnassignPrivateIpAddresses"
"ec2:UnassignPrivateIpAddresses",
]
resources = ["*"]
}
Expand All @@ -339,7 +339,7 @@ data "aws_iam_policy_document" "vpc_cni" {
"ec2:DescribeInstances",
"ec2:DescribeTags",
"ec2:DescribeNetworkInterfaces",
"ec2:DescribeInstanceTypes"
"ec2:DescribeInstanceTypes",
]
resources = ["*"]
}
Expand Down Expand Up @@ -392,7 +392,7 @@ data "aws_iam_policy_document" "node_termination_handler" {
statement {
actions = [
"sqs:DeleteMessage",
"sqs:ReceiveMessage"
"sqs:ReceiveMessage",
]

resources = var.node_termination_handler_sqs_queue_arns
Expand Down Expand Up @@ -565,7 +565,7 @@ data "aws_iam_policy_document" "load_balancer_controller" {
actions = [
"ec2:AuthorizeSecurityGroupIngress",
"ec2:RevokeSecurityGroupIngress",
"ec2:CreateSecurityGroup"
"ec2:CreateSecurityGroup",
]
resources = ["*"]
}
Expand Down

0 comments on commit 0f5979f

Please sign in to comment.