Skip to content

Commit

Permalink
Hot fix to add defaults to cloud params, see GoogleCloudPlatform#2810
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-stroud authored and sharabiani committed Aug 12, 2024
1 parent 5f4f1d3 commit 77654fe
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,12 +403,12 @@ EOD
variable "cloud_parameters" {
description = "cloud.conf options. Defaults inherited from [Slurm GCP repo](https://github.com/GoogleCloudPlatform/slurm-gcp/blob/master/terraform/slurm_cluster/modules/slurm_files/README_TF.md#input_cloud_parameters)"
type = object({
no_comma_params = optional(bool)
resume_rate = optional(number)
resume_timeout = optional(number)
suspend_rate = optional(number)
suspend_timeout = optional(number)
topology_plugin = optional(string)
no_comma_params = optional(bool, false)
resume_rate = optional(number, 0)
resume_timeout = optional(number, 300)
suspend_rate = optional(number, 0)
suspend_timeout = optional(number, 300)
topology_plugin = optional(string, "topology/tree")
tree_width = optional(number, 128)
})
default = {}
Expand Down

0 comments on commit 77654fe

Please sign in to comment.