Skip to content

Commit

Permalink
Trying to fix desired size bug (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
juandiegopalomino authored Mar 16, 2021
1 parent 1b7ef6f commit 5a28440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/tf_modules/aws-eks/default_node_group.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ resource "aws_eks_node_group" "node_group" {
labels = { node_group_name = "opta-${var.layer_name}-default" }

scaling_config {
desired_size = var.max_nodes
max_size = var.max_nodes
desired_size = var.min_nodes
min_size = var.min_nodes
}

Expand Down

0 comments on commit 5a28440

Please sign in to comment.