25 lines
394 B
HCL
25 lines
394 B
HCL
resource "proxmox_vm_qemu" "vm1" {
|
|
name = "terraform-vm"
|
|
target_node = "pve"
|
|
clone = "ubuntu-template"
|
|
|
|
cores = 2
|
|
sockets = 1
|
|
memory = 2048
|
|
|
|
disk {
|
|
slot = "scsi0"
|
|
size = "20G"
|
|
type = "scsi"
|
|
storage = "zfs1"
|
|
}
|
|
|
|
network {
|
|
id = 0
|
|
model = "virtio"
|
|
bridge = "vmbr0"
|
|
}
|
|
|
|
os_type = "cloud-init"
|
|
ipconfig0 = "ip=dhcp"
|
|
} |