mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
9 lines
188 B
Terraform
9 lines
188 B
Terraform
data "netbird_user" "example" {
|
|
self = true
|
|
}
|
|
|
|
resource "netbird_token" "example" {
|
|
user_id = data.netbird_user.example.id
|
|
name = "TF Test"
|
|
expiration_days = 1
|
|
} |