mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
15 lines
388 B
Terraform
15 lines
388 B
Terraform
resource "netbird_group" "example" {
|
|
name = "Test"
|
|
}
|
|
|
|
resource "netbird_setup_key" "example" {
|
|
name = "TF Test"
|
|
expiry_seconds = 86400
|
|
type = "reusable"
|
|
allow_extra_dns_labels = true
|
|
auto_groups = [netbird_group.example.id]
|
|
ephemeral = false
|
|
revoked = false
|
|
usage_limit = 0
|
|
}
|