mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
[TERRAFORM] Terraform to TF subdirectory
This commit is contained in:
parent
b22b7d785d
commit
73470b1f68
20 changed files with 3 additions and 84 deletions
12
tf/tailscale.tf
Normal file
12
tf/tailscale.tf
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
variable "tailscale_api_key" {
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "tailnet" {
|
||||
sensitive = false
|
||||
}
|
||||
|
||||
provider "tailscale" {
|
||||
api_key = var.tailscale_api_key
|
||||
tailnet = var.tailnet
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue