Skip to content

Commit

Permalink
fix: use null as default since that's what we check
Browse files Browse the repository at this point in the history
  • Loading branch information
argoyle committed Dec 1, 2023
1 parent 10ca696 commit 4e861d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ variable "dns_zone" {
variable "image" {
type = string
description = "The image to use for instances (can be overridden by master_image, node_image and image in additional_nodes)"
default = ""
default = null
}

variable "master_types" {
Expand Down Expand Up @@ -87,7 +87,7 @@ variable "master_max_instance_lifetime_hours" {
variable "master_image" {
type = string
description = "The image to use for master instances"
default = ""
default = null
}

variable "node_types" {
Expand Down Expand Up @@ -126,7 +126,7 @@ variable "node_max_instance_lifetime_hours" {
variable "node_image" {
type = string
description = "The image to use for node instances"
default = ""
default = null
}

variable "additional_nodes" {
Expand Down

0 comments on commit 4e861d3

Please sign in to comment.