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

11
terraform/variables.tf Normal file
View File

@@ -0,0 +1,11 @@
variable "netbird_management_url" {
type = string
description = "NetBird Management API URL"
default = "https://netbird-poc.networkmonitor.cc"
}
variable "netbird_token" {
type = string
sensitive = true
description = "NetBird admin PAT"
}