mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
20 lines
412 B
Terraform
20 lines
412 B
Terraform
# Copyright (c) HashiCorp, Inc.
|
|
|
|
variable "netbird_token" {
|
|
sensitive = true
|
|
description = "NetBird Management Access Token"
|
|
}
|
|
|
|
terraform {
|
|
required_providers {
|
|
netbird = {
|
|
source = "registry.terraform.io/netbirdio/netbird"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "netbird" {
|
|
token = var.netbird_token # Required
|
|
management_url = "https://api.netbird.io" # Optional, defaults to this value
|
|
}
|