Files
kydah-modules/pvc/variables.tf

32 lines
539 B
HCL

variable "component" {
type = string
}
variable "instance" {
type = string
}
variable "namespace" {
type = string
}
variable "labels" {
type = map(string)
}
variable "storage" {
type = object({
access_mode = optional(string),
class = optional(string),
size = optional(string),
type = optional(string)
})
default = {
"access_mode" = "ReadWriteOnce"
"class" = ""
"size" = "10Gi"
"type" = "Filesystem"
}
}
variable "backup" {
type = bool
default = true
}