infrastructure/tailscale.tf

12 lines
260 B
Terraform
Raw Normal View History

2024-09-25 11:23:52 +00:00
resource "tailscale_tailnet_key" "cloud_init_key" {
reusable = true
ephemeral = false
preauthorized = true
expiry = 3600
description = "Cloud-init key used by opentofu"
}
data "tailscale_devices" "nodes" {
name_prefix = "node"
}