Skip to content

Commit

Permalink
use var.cluster_autoscaling_profile
Browse files Browse the repository at this point in the history
  • Loading branch information
jarpat committed Feb 20, 2024
1 parent a83a2a9 commit 9c362ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ module "gke" {
gpu_resources = [],
auto_repair = (var.kubernetes_channel == "UNSPECIFIED") ? false : true,
auto_upgrade = (var.kubernetes_channel == "UNSPECIFIED") ? false : true
autoscaling_profile = "BALANCED"
autoscaling_profile = var.cluster_autoscaling_profile
} : {
enabled : false,
max_cpu_cores : 0,
Expand All @@ -148,7 +148,7 @@ module "gke" {
gpu_resources = [],
auto_repair = (var.kubernetes_channel == "UNSPECIFIED") ? false : true,
auto_upgrade = (var.kubernetes_channel == "UNSPECIFIED") ? false : true
autoscaling_profile = "BALANCED"
autoscaling_profile = var.cluster_autoscaling_profile
}

master_authorized_networks = concat([
Expand Down

0 comments on commit 9c362ad

Please sign in to comment.