diff --git a/terraform/proxmox/test.tf b/terraform/proxmox/test.tf new file mode 100644 index 0000000..c65620c --- /dev/null +++ b/terraform/proxmox/test.tf @@ -0,0 +1,39 @@ +resource "proxmox_virtual_environment_vm" "test" { + node_name = "prox" + vm_id = "9996" + name = "test" + description = "test" + + cpu { + cores = "2" + type = "host" + } + + memory { + dedicated = "2048" + } + + network_device { + bridge = "vmbr0" + vlan_id = "1" + } + + disk { + datastore_id = "Fast2Tb" + size = "20" + } + + clone { + vm_id = "9996" + } + + initialization { + ip_config { + ipv4 { + address = "dhcp" + } + } + + user_data_file_id = proxmox_virtual_environment_file.cloud_config.id + } +}