16 lines
353 B
HCL
16 lines
353 B
HCL
variable "name" {
|
|
type = string
|
|
description = "The name of the volume"
|
|
}
|
|
|
|
variable "namespace" {
|
|
type = string
|
|
description = "The namespace for the persistent volume claim"
|
|
}
|
|
|
|
variable "volume_storage_capacity" {
|
|
type = string
|
|
description = "Size of the persistent volume reported to Kubernetes"
|
|
default = "1Gi"
|
|
}
|