Switch to terraform

This commit is contained in:
Prox
2026-02-15 18:37:15 +02:00
commit a7062b43ab
70 changed files with 6063 additions and 0 deletions

13
terraform/main.tf Normal file
View File

@@ -0,0 +1,13 @@
terraform {
required_providers {
netbird = {
source = "netbirdio/netbird"
version = "~> 0.0.8"
}
}
}
provider "netbird" {
management_url = var.netbird_management_url
token = var.netbird_token
}