issue #598: allow disabling preempt in terraform

pull/618/head
David Wilson 5 years ago
parent c89f6cbab6
commit 9b45872246

@ -2,6 +2,10 @@ variable "node-count" {
default = 0 default = 0
} }
variable "preemptible" {
default = true
}
variable "big" { variable "big" {
default = false default = false
} }
@ -93,7 +97,7 @@ resource "google_compute_instance_template" "node" {
machine_type = "custom-1-1024" machine_type = "custom-1-1024"
scheduling { scheduling {
preemptible = true preemptible = "${var.preemptible}"
automatic_restart = false automatic_restart = false
} }

Loading…
Cancel
Save