63 lines
1.2 KiB
HCL
63 lines
1.2 KiB
HCL
resource "proxmox_virtual_environment_vm" "coolify" {
|
|
|
|
# VM General Settings
|
|
node_name = "pve2"
|
|
vm_id = 323
|
|
name = "coolify"
|
|
tags = ["tofu", "ubuntu-22", "auto-homelab-repo"]
|
|
started = true
|
|
|
|
agent {
|
|
enabled = true
|
|
}
|
|
|
|
clone {
|
|
vm_id = 8101
|
|
}
|
|
|
|
# VM CPU Settings
|
|
cpu {
|
|
cores = 4
|
|
type = "host"
|
|
architecture = "x86_64"
|
|
}
|
|
|
|
# VM Memory Settings
|
|
memory {
|
|
dedicated = 4096
|
|
}
|
|
|
|
# VM Network Settings
|
|
network_device {
|
|
bridge = "vmbr0"
|
|
vlan_id = 0
|
|
}
|
|
|
|
# VM Disk Settings
|
|
disk {
|
|
datastore_id = "Fast500Gb"
|
|
size = 64
|
|
interface = "scsi0"
|
|
}
|
|
|
|
serial_device {}
|
|
|
|
initialization {
|
|
ip_config {
|
|
ipv4 {
|
|
address = "dhcp"
|
|
}
|
|
}
|
|
|
|
user_data_file_id = proxmox_virtual_environment_file.cloud_config2.id
|
|
}
|
|
|
|
lifecycle {
|
|
ignore_changes = [
|
|
initialization[0].user_account[0].keys,
|
|
initialization[0].user_account[0].password,
|
|
initialization[0].user_account[0].username,
|
|
]
|
|
}
|
|
|
|
}
|