Opinionated.tf/products/headscale/inputs.tf
2025-01-16 19:40:02 +01:00

20 lines
No EOL
540 B
HCL

variable "image" {
description = "The headscale image to deploy"
default = "headscale/headscale:stable"
}
variable "admin_image" {
description = "The headscale admin image to deploy"
default = "simcu/headscale-ui"
}
variable "stack_name" {
description = "The name of the stack"
default = "headscale"
}
variable "domain" {
description = "The domain for the headscale service"
}
variable "placement_constraints" {
default = []
type = list(string)
description = "Docker Swarm placement constraints"
}