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
Copy file name to clipboardExpand all lines: aws/modules/infrastructure_modules/eks/locals.tf
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,8 @@ locals {
75
75
min_size = var.eks_minimum_nodes
76
76
max_size = var.eks_maximum_nodes
77
77
desired_size = var.eks_desired_nodes
78
-
78
+
create_iam_role = local.create_node_iam_role ?false:true# As we have created the nodegroup role in this module, we do not want to create it again in the eks module
79
+
iam_role_arn = local.create_node_iam_role ? aws_iam_role.node["general-${v}"].arn :null# As
0 commit comments