Working Landing Zone.

This commit is contained in:
2025-03-30 11:31:28 +02:00
commit a427e31bb6
10 changed files with 216 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
resource "google_compute_instance" "vm_hub" {
name = var.name
machine_type = var.machine_type
can_ip_forward = var.can_ip_forward
description = var.description
boot_disk {
initialize_params {
image = "debian-cloud/debian-12"
}
}
network_interface {
network = var.network_name
subnetwork = var.subnet_name
}
metadata = {
ssh-keys = "${var.ssh[0].public_key} ${var.ssh[0].ssh_user}"
}
}