IAC/headscale.tf
Matthew Baggett a0cc54443a
Some checks are pending
Trunk Check / Trunk Check Runner (push) Waiting to run
tf fmt
2025-01-16 09:58:04 +01:00

13 lines
526 B
HCL

module "headscale" {
#source = "github.com/matthewbaggett/terraform_modules//products/headscale"
source = "./lib/grey.ooo/products/headscale"
depends_on = [module.traefik]
stack_name = "headscale"
placement_constraints = ["node.hostname == Passing-by-and-thought-id-drop-in"]
#traefik = merge(var.treafik_defaults, { domain = "s3.${var.base_domain}" })
domain = "headscale.${var.base_domain}"
}
output "headscale" {
value = module.headscale
}