Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDiazL committed Dec 20, 2023
1 parent 446e8b5 commit 790c88c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ resource "aws_eks_node_group" "node_nodes" {


remote_access {
ec2_ssh_key = aws_key_pair.aws_key.name
ec2_ssh_key = var.aws_eks_ec2_key_pair != "" ? var.aws_eks_ec2_key_pair : aws_key_pair.aws_key[0].id
}
#launch_template {
# id = aws_launch_template.main.id
Expand Down

0 comments on commit 790c88c

Please sign in to comment.