mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
12 lines
No EOL
187 B
HCL
12 lines
No EOL
187 B
HCL
variable "tailscale_api_key" {
|
|
sensitive = true
|
|
}
|
|
|
|
variable "tailnet" {
|
|
sensitive = false
|
|
}
|
|
|
|
provider "tailscale" {
|
|
api_key = var.tailscale_api_key
|
|
tailnet = var.tailnet
|
|
} |