infrastructure/modules/infrastructure/tailscale.tf

18 lines
388 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 = 21600 # 6 hours
2024-09-25 11:23:52 +00:00
description = "Cloud-init key used by opentofu"
}
data "tailscale_devices" "nodes" {
name_prefix = "node"
}
locals {
tailscale_devices = {
for host in data.tailscale_devices.nodes.devices : host.hostname => host
}
}