Files
homelab/modules/30-services-software/filesystem-service/variables.tf
T
2026-03-28 13:20:20 +00:00

34 lines
778 B
Terraform

variable "image_tag" {
description = "The tag for the Filebrowser Quantum container image. Default: Latest"
type = string
default = "latest"
}
variable "volume_path" {
description = "Base directory for volumes"
type = string
}
variable "networks" {
description = "List of networks to which the container should be attached"
type = list(string)
default = []
}
variable "user_id" {
description = "User ID for container permissions"
type = string
default = "1000"
}
variable "group_id" {
description = "Group ID for container permissions"
type = string
default = "1000"
}
variable "timezone" {
description = "Timezone for the container"
type = string
default = "Europe/Helsinki"
}