Murat ÖZDEMİR 2d515f7206 Add initial Terraform infrastructure for Hetzner test environment
This commit introduces the foundational Infrastructure-as-Code for provisioning a test environment on Hetzner Cloud. It defines server nodes, private networking, comprehensive firewalls, and includes documentation on resource lifecycle and safe configuration practices.
2026-05-10 14:09:23 +03:00

9 lines
161 B
HCL

resource "hcloud_placement_group" "test_spread" {
name = "${local.name_prefix}-spread"
type = "spread"
labels = {
environment = var.environment
}
}