Skip to content

Commit

Permalink
add queued_provisioning variable to all pools for infra module
Browse files Browse the repository at this point in the history
  • Loading branch information
volatilemolotov committed Dec 11, 2024
1 parent 412621f commit 18ba2c8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions infrastructure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ variable "cpu_pools" {
preemptible = optional(bool, false)
initial_node_count = optional(number, 1)
accelerator_count = optional(number, 0)
queued_provisioning = optional(bool, false)
}))
default = [{
name = "cpu-pool"
Expand Down Expand Up @@ -245,6 +246,8 @@ variable "gpu_pools" {
accelerator_count = optional(number, 0)
accelerator_type = optional(string, "nvidia-tesla-t4")
gpu_driver_version = optional(string, "DEFAULT")
queued_provisioning = optional(bool, false)

}))
default = [{
name = "gpu-pool"
Expand Down Expand Up @@ -283,6 +286,7 @@ variable "tpu_pools" {
initial_node_count = optional(number, 1)
accelerator_count = optional(number, 0)
accelerator_type = optional(string, "nvidia-tesla-t4")
queued_provisioning = optional(bool, false)
}))
default = []
}

0 comments on commit 18ba2c8

Please sign in to comment.