35 lines
763 B
Terraform
35 lines
763 B
Terraform
variable "image_tag" {
|
|
description = "The tag for the Eco 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"
|
|
}
|