feat: add pilot-ivanov setup key and encrypted key export in CI
Some checks failed
Terraform / terraform (push) Failing after 8s

This commit is contained in:
Prox
2026-02-15 19:21:41 +02:00
parent ca546ff6d8
commit 36672d3f10
3 changed files with 66 additions and 3 deletions

View File

@@ -7,7 +7,6 @@ resource "netbird_setup_key" "gs_onboarding" {
ephemeral = false
}
# Comment to trigger CI
resource "netbird_setup_key" "pilot_onboarding" {
name = "pilot-onboarding"
type = "reusable"
@@ -15,3 +14,12 @@ resource "netbird_setup_key" "pilot_onboarding" {
usage_limit = 0
ephemeral = false
}
# Test setup key for e2e demo (one-time use, peer will be renamed to "pilot-ivanov")
resource "netbird_setup_key" "pilot_ivanov" {
name = "pilot-ivanov"
type = "one-off"
auto_groups = [netbird_group.pilots.id]
usage_limit = 1
ephemeral = false
}