Skip to content

Commit

Permalink
fix: default value should be null (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
torsten-online authored Nov 14, 2023
1 parent 44b0c4e commit d8afd55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/harvester-vm-image/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ variable "tags" {
variable "storage_class_name" {
description = "The name of the storage class"
type = string
default = ""
default = null
}

variable "pvc_name" {
description = "PVC Name"
type = string
default = ""
default = null
}

variable "pvc_namespace" {
description = "PVC Namespace"
type = string
default = ""
default = null
}

0 comments on commit d8afd55

Please sign in to comment.