iac/terraform/ubuntu22-template.tf

41 lines
656 B
Terraform
Raw Normal View History

2024-07-12 23:57:29 -04:00
resource "proxmox_virtual_environment_vm" "Ubuntu-22-Template" {
name = "ubuntu-22"
node_name = "prox"
vm_id = 8100
tags = ["tofu", "ubuntu-22"]
template = true
started = false
disk {
datastore_id = "Fast2Tb"
2024-08-10 23:21:12 -04:00
file_id = "local:iso/jammy-server-cloudimg-amd64.img"
2024-07-12 23:57:29 -04:00
interface = "scsi0"
size = 4
}
agent {
enabled = true
}
initialization {
ip_config {
ipv4 {
address = "dhcp"
}
}
user_data_file_id = proxmox_virtual_environment_file.cloud_config.id
}
serial_device {}
network_device {
bridge = "vmbr0"
}
vga {
type = "serial0"
}
}