Skip to content

Commit

Permalink
fix: Reference the correct value from deployment sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpanzella committed Sep 30, 2024
1 parent df95c36 commit 797f6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ module "app_lb" {
}

locals {
kubernetes_instance_type = try(local.deployment_size[var.size].node_type, var.kubernetes_instance_type)
kubernetes_instance_type = try(local.deployment_size[var.size].node_instance, var.kubernetes_instance_type)
}

data "azapi_resource_list" "az_zones" {
Expand Down

0 comments on commit 797f6f4

Please sign in to comment.