Add VM test configuration

This commit is contained in:
GitHub Actions 2024-12-21 04:26:25 +00:00
parent 229e0ef85a
commit a93a6c8413

39
terraform/proxmox/test.tf Normal file
View file

@ -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
}
}