mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-08 14:33:52 +07:00
8447502d54
- Fully open source - Has free hosted version (my.zerotier.com) - Can be automated with Terraform - Pretty good performance with UDP hole punching
14 lines
258 B
HCL
14 lines
258 B
HCL
terraform {
|
|
required_providers {
|
|
zerotier = {
|
|
source = "zerotier/zerotier"
|
|
version = "~> 1.2.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "zerotier" {
|
|
zerotier_central_url = var.zerotier_central_url
|
|
zerotier_central_token = var.zerotier_central_token
|
|
}
|