49 lines
938 B
Terraform
49 lines
938 B
Terraform
|
resource "proxmox_virtual_environment_vm" "Ubuntu-22-Template2" {
|
||
|
name = "ubuntu-22"
|
||
|
node_name = "pve2"
|
||
|
vm_id = 8101
|
||
|
tags = ["tofu", "ubuntu-22"]
|
||
|
template = true
|
||
|
started = false
|
||
|
|
||
|
disk {
|
||
|
datastore_id = "local-lvm"
|
||
|
file_id = proxmox_virtual_environment_download_file.ubuntu_cloud_image_22_2.id
|
||
|
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"
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
resource "proxmox_virtual_environment_download_file" "ubuntu_cloud_image_22_2" {
|
||
|
content_type = "iso"
|
||
|
datastore_id = "local"
|
||
|
node_name = "pve2"
|
||
|
url = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
|
||
|
}
|