VM Bot: create vm-201 for user 135789842 #79

Merged
claude merged 1 commits from vm/create-135789842 into main 2026-02-24 09:14:59 +01:00

View File

@ -7,7 +7,15 @@
# Cloud image dependency: proxmox_virtual_environment_download_file.ubuntu_2404_cloud (in main.tf)
locals {
tenant_vms = {}
tenant_vms = {
"vm-201" = {
vm_id = 201
public_ip = "185.47.204.227"
password = "2U85aZ8sCJDqxVPK"
ram_mb = 4096
disk_gb = 50
}
}
}
module "tenant_vm" {
@ -22,7 +30,6 @@ module "tenant_vm" {
ram_mb = lookup(each.value, "ram_mb", 4096)
disk_gb = lookup(each.value, "disk_gb", 50)
started = lookup(each.value, "started", true)
extra_firewall_rules = lookup(each.value, "extra_firewall_rules", [])
depends_on = [proxmox_virtual_environment_download_file.ubuntu_2404_cloud]
}