feat: stuff

This commit is contained in:
2025-12-22 11:16:19 -05:00
parent eb01f9d207
commit 3e07d115c0
10 changed files with 119 additions and 25 deletions

View File

@@ -1,15 +0,0 @@
resource "hcloud_ssh_key" "main" {
name = "my-ssh-key"
public_key = file("~/.ssh/id_ed25519.pub")
}
resource "hcloud_server" "jumphost" {
for_each = local.boxes
name = each.key.name
image = "debian-12"
server_type = "cx23"
public_net {
ipv4_enabled = true
ipv6_enabled = true
}
}