You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In values.tf, the arn value is left blank at line 15. However, the correct behavior of not creating an irsa role should be to use the role provided by irsa_assume_role_arn arn.
Issue Type
Bug Report
Terraform Version
Xiaoxis-MBP:datachat xiaoxisun$ t --versionTerraform v1.5.5on darwin_amd64Your version of Terraform is out of date! The latest versionis 1.5.7. You can update by downloading from https://www.terraform.io/downloads.html
Given the usage of EKS Terraform module, the above piece of code doesn't actually use the role AmazonEKSCompactClusterAutoscalerRole. We have to attach the proper policy to the Role that EC2 nodes assume in order for cluster autoscaler to have the proper permission.
After applying the changes, the value of the arn is empty as shown below:
Expected Results
The above configuration should work.
Actual Results
The above configuration leads to E0925 21:47:42.412942 1 aws_manager.go:262] Failed to regenerate ASG cache: AccessDenied: User: arn:aws:sts::xxxx:assumed-role/<node group name>/<the node instance id that cluster autoscaler is on> is not authorized to perform: autoscaling:DescribeAutoScalingGroups because no identity-based policy allows the autoscaling:DescribeAutoScalingGroups action status code: 403, request id: d2049ca6-355c-456b-ad63-2abd509cc9a0F0925 21:47:42.412994 1 aws_cloud_provider.go:426] Failed to create AWS Manager: AccessDenied: User: arn:aws:sts::xxxxxx:assumed-role/<node group name>/<the node instance id that cluster autoscaler is on> is not authorized to perform: autoscaling:DescribeAutoScalingGroups because no identity-based policy allows the autoscaling:DescribeAutoScalingGroups action
The text was updated successfully, but these errors were encountered:
Summary
In
values.tf
, the arn value is left blank at line 15. However, the correct behavior of not creating an irsa role should be to use the role provided byirsa_assume_role_arn
arn.Issue Type
Bug Report
Terraform Version
Steps to Reproduce
Given the usage of EKS Terraform module, the above piece of code doesn't actually use the role
AmazonEKSCompactClusterAutoscalerRole
. We have to attach the proper policy to the Role that EC2 nodes assume in order for cluster autoscaler to have the proper permission.After applying the changes, the value of the arn is empty as shown below:
Expected Results
The above configuration should work.
Actual Results
The text was updated successfully, but these errors were encountered: