nixos-config/configs/nixos/plover/terraform/versions.tf
Gabriel Arazas 560230645f
hosts/plover/terraform: add Tailscale resources
Not automated per-se since we are dealing with
not-NixOS-but-only-after-it-is-installed Hetzner server. I really have
to figure that part out.
2024-10-12 13:15:38 +08:00

24 lines
377 B
HCL

terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "1.48.1"
}
hetznerdns = {
source = "timohirt/hetznerdns"
version = "2.2.0"
}
tailscale = {
source = "tailscale/tailscale"
version = "0.17.2"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
}
}
}