terraform-modules/redis/variables.tf
2025-05-06 09:30:27 +02:00

29 lines
No EOL
680 B
HCL

variable "stackit_project_id" {
type = string
description = "STACKIT project ID"
}
variable "redis_name" {
type = string
description = "Redis instance name"
}
variable "redis_version" {
type = string
description = "Redis version (e.g. 7)"
}
variable "redis_plan_name" {
type = string
description = "Redis plan name (e.g. stackit-redis-1.4.10-single)"
}
variable "redis_parameters" {
description = "Optional advanced Redis parameters"
type = object({
sgw_acl = optional(string)
enable_monitoring = bool
down_after_milliseconds = number
syslog = optional(list(string))
})
}