mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:14:38 +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
15 lines
428 B
HCL
15 lines
428 B
HCL
module "cloudflare" {
|
|
source = "./modules/cloudflare"
|
|
cloudflare_account_id = var.cloudflare_account_id
|
|
cloudflare_email = var.cloudflare_email
|
|
cloudflare_api_key = var.cloudflare_api_key
|
|
}
|
|
|
|
module "zerotier" {
|
|
source = "./modules/zerotier"
|
|
zerotier_central_token = var.zerotier_central_token
|
|
bridged_routes = [
|
|
"192.168.1.0/24" # TODO add this to configure script
|
|
]
|
|
}
|