Add spot vm support to gke-nodepool

This commit is contained in:
Julio Castillo
2022-05-04 10:04:39 +02:00
parent 882c07cc19
commit aee089dcd3
3 changed files with 13 additions and 5 deletions

View File

@@ -194,6 +194,12 @@ variable "node_shielded_instance_config" {
default = null
}
variable "node_spot" {
description = "Use Spot VMs for nodes."
type = bool
default = null
}
variable "node_tags" {
description = "Network tags applied to nodes."
type = list(string)