mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
[REFACTOR] Split out current terraform a little
This commit is contained in:
parent
b18e5337f0
commit
0862be524a
14 changed files with 226 additions and 389 deletions
12
tailscale.tf
Normal file
12
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