We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beca905 commit 9e3eb35Copy full SHA for 9e3eb35
customer-managed/aws/terraform/iam_utility_node_group.tf
@@ -13,10 +13,21 @@ data "aws_iam_policy_document" "cluster_autoscaler_policy" {
13
# https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2.html
14
"ec2:DescribeInstanceTypes",
15
"ec2:DescribeLaunchTemplateVersions",
16
+
17
]
18
resources = ["*"]
19
}
20
21
+ statement {
22
+ effect = "Allow"
23
+ actions = [
24
+ "eks:DescribeNodegroup"
25
+ ]
26
+ resources = [
27
+ "arn:aws:eks:*:${local.aws_account_id}:nodegroup/redpanda-*"
28
29
+ }
30
31
statement {
32
effect = "Allow"
33
actions = [
0 commit comments