Switch to terraform
This commit is contained in:
17
terraform/setup_keys.tf
Normal file
17
terraform/setup_keys.tf
Normal file
@@ -0,0 +1,17 @@
|
||||
# Setup keys for peer onboarding
|
||||
resource "netbird_setup_key" "gs_onboarding" {
|
||||
name = "ground-station-onboarding"
|
||||
type = "reusable"
|
||||
auto_groups = [netbird_group.ground_stations.id]
|
||||
usage_limit = 0 # unlimited
|
||||
ephemeral = false
|
||||
}
|
||||
|
||||
# Comment to trigger CI
|
||||
resource "netbird_setup_key" "pilot_onboarding" {
|
||||
name = "pilot-onboarding"
|
||||
type = "reusable"
|
||||
auto_groups = [netbird_group.pilots.id]
|
||||
usage_limit = 0
|
||||
ephemeral = false
|
||||
}
|
||||
Reference in New Issue
Block a user