14 lines
541 B
Terraform
14 lines
541 B
Terraform
|
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
|
||
|
}
|
||
|
|