chore: Restructured infra modules

This commit is contained in:
2026-07-10 20:54:22 +01:00
parent d0d1385bf4
commit a7cfcc33ce
19 changed files with 473 additions and 230 deletions
+24
View File
@@ -0,0 +1,24 @@
variable "server_type" {
description = "Server type for vpn (OpenVPN + Traefik)."
type = string
}
variable "image" {
description = "OS image used for the server."
type = string
}
variable "location" {
description = "Hetzner Cloud datacenter location."
type = string
}
variable "ssh_key_id" {
description = "ID of the Hetzner Cloud SSH key to install on the server."
type = string
}
variable "allowed_ssh_source_ips" {
description = "CIDRs allowed to reach port 22 on vpn."
type = list(string)
}