24 lines
540 B
HCL
24 lines
540 B
HCL
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 "pilot_ivanov_key" {
|
|
value = netbird_setup_key.pilot_ivanov.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
|
|
}
|
|
}
|