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