Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
josmo committed May 8, 2024
1 parent 4cb4228 commit 09a83a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/foundation-stack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ module "eks" {
instance_types = ["t3a.medium"]
min_size = var.initial_node_min_size
max_size = var.initial_node_max_size
desired_size = var.initial_nod_desired_size
desired_size = var.initial_node_desired_size
capacity_type = "ON_DEMAND"
labels = var.initial_node_labels
bootstrap_extra_args = "--use-max-pods false"
Expand Down
2 changes: 1 addition & 1 deletion terraform/foundation-stack/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ variable "initial_node_max_size" {
description = "max size of the initial managed node group"
}

variable "initial_nod_desired_size" {
variable "initial_node_desired_size" {
type = number
default = 3
description = "desired size of the initial managed node group"
Expand Down

0 comments on commit 09a83a9

Please sign in to comment.