File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -456,7 +456,7 @@ locals {
456
456
457
457
# Security groups for pods
458
458
eks_sgpp_iam_role_policies = { for k , v in {
459
- AmazonEKSClusterPolicy = " ${ local . iam_role_policy_prefix } /AmazonEKSVPCResourceController"
459
+ AmazonEKSVPCResourceController = " ${ local . iam_role_policy_prefix } /AmazonEKSVPCResourceController"
460
460
} : k => v if var . enable_security_groups_for_pods && ! local . create_outposts_local_cluster && ! local . auto_mode_enabled }
461
461
}
462
462
Original file line number Diff line number Diff line change @@ -196,17 +196,17 @@ output "cluster_iam_role_unique_id" {
196
196
197
197
output "node_iam_role_name" {
198
198
description = " EKS Auto node IAM role name"
199
- value = try (aws_iam_role. this [0 ]. name , null )
199
+ value = try (aws_iam_role. eks_auto [0 ]. name , null )
200
200
}
201
201
202
202
output "node_iam_role_arn" {
203
203
description = " EKS Auto node IAM role ARN"
204
- value = try (aws_iam_role. this [0 ]. arn , null )
204
+ value = try (aws_iam_role. eks_auto [0 ]. arn , null )
205
205
}
206
206
207
207
output "node_iam_role_unique_id" {
208
208
description = " Stable and unique string identifying the IAM role"
209
- value = try (aws_iam_role. this [0 ]. unique_id , null )
209
+ value = try (aws_iam_role. eks_auto [0 ]. unique_id , null )
210
210
}
211
211
212
212
# ###############################################################################
You can’t perform that action at this time.
0 commit comments