init
This commit is contained in:
35
terraform/modules/k8s/valkey/variables.tf
Normal file
35
terraform/modules/k8s/valkey/variables.tf
Normal file
@@ -0,0 +1,35 @@
|
||||
variable "namespace" {
|
||||
type = string
|
||||
default = "valkey"
|
||||
}
|
||||
|
||||
variable "create_namespace" {
|
||||
type = bool
|
||||
default = true
|
||||
}
|
||||
|
||||
variable "release_name" {
|
||||
type = string
|
||||
default = "valkey"
|
||||
}
|
||||
|
||||
variable "chart_version" {
|
||||
type = string
|
||||
default = "0.9.2"
|
||||
}
|
||||
|
||||
variable "repository" {
|
||||
type = string
|
||||
default = "https://valkey.io/valkey-helm/"
|
||||
}
|
||||
|
||||
# Если хочешь кастомизировать chart values — просто передай сюда yamlencode({...})
|
||||
variable "values" {
|
||||
type = list(string)
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "valkey_password" {
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
Reference in New Issue
Block a user