adding kasm
This commit is contained in:
parent
f9bce76f30
commit
a541f31b3a
1 changed files with 7 additions and 8 deletions
|
@ -1,9 +1,10 @@
|
|||
resource "proxmox_virtual_environment_vm" "coolify" {
|
||||
resource "proxmox_virtual_environment_vm" "Kasm" {
|
||||
|
||||
# VM General Settings
|
||||
node_name = "pve2"
|
||||
vm_id = 323
|
||||
name = "coolify"
|
||||
vm_id = 333
|
||||
name = "Kasm"
|
||||
description = "kasm"
|
||||
tags = ["tofu", "ubuntu-22", "auto-homelab-repo"]
|
||||
started = true
|
||||
|
||||
|
@ -30,18 +31,16 @@ resource "proxmox_virtual_environment_vm" "coolify" {
|
|||
# VM Network Settings
|
||||
network_device {
|
||||
bridge = "vmbr0"
|
||||
vlan_id = 0
|
||||
vlan_id = 1
|
||||
}
|
||||
|
||||
# VM Disk Settings
|
||||
disk {
|
||||
datastore_id = "Fast500Gb"
|
||||
size = 64
|
||||
datastore_id = "local-lvm"
|
||||
size = 100
|
||||
interface = "scsi0"
|
||||
}
|
||||
|
||||
serial_device {}
|
||||
|
||||
initialization {
|
||||
ip_config {
|
||||
ipv4 {
|
Reference in a new issue