nomad/packs/democratic_csi_freenas_api/variables.hcl

28 lines
442 B
HCL

variable "vault_prefix" {
type = string
default = ""
}
variable "namespace" {
type = string
default = "default"
}
variable "image" {
description = "Docker image to use"
type = string
default = "danielberteaud/democratic-csi:latest"
}
variable "resources" {
description = "Resources allocation for each instance"
type = object({
cpu = number
memory = number
})
default = {
cpu = 100
memory = 192
}
}