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

18
terraform/outputs.tf Normal file
View File

@@ -0,0 +1,18 @@
output "gs_setup_key" {
value = netbird_setup_key.gs_onboarding.key
sensitive = true
}
output "pilot_setup_key" {
value = netbird_setup_key.pilot_onboarding.key
sensitive = true
}
output "group_ids" {
value = {
ground_stations = netbird_group.ground_stations.id
pilots = netbird_group.pilots.id
operators = netbird_group.operators.id
fusion_servers = netbird_group.fusion_servers.id
}
}