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
|
# VM General Settings
|
||||||
node_name = "pve2"
|
node_name = "pve2"
|
||||||
vm_id = 323
|
vm_id = 333
|
||||||
name = "coolify"
|
name = "Kasm"
|
||||||
|
description = "kasm"
|
||||||
tags = ["tofu", "ubuntu-22", "auto-homelab-repo"]
|
tags = ["tofu", "ubuntu-22", "auto-homelab-repo"]
|
||||||
started = true
|
started = true
|
||||||
|
|
||||||
|
@ -30,18 +31,16 @@ resource "proxmox_virtual_environment_vm" "coolify" {
|
||||||
# VM Network Settings
|
# VM Network Settings
|
||||||
network_device {
|
network_device {
|
||||||
bridge = "vmbr0"
|
bridge = "vmbr0"
|
||||||
vlan_id = 0
|
vlan_id = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
# VM Disk Settings
|
# VM Disk Settings
|
||||||
disk {
|
disk {
|
||||||
datastore_id = "Fast500Gb"
|
datastore_id = "local-lvm"
|
||||||
size = 64
|
size = 100
|
||||||
interface = "scsi0"
|
interface = "scsi0"
|
||||||
}
|
}
|
||||||
|
|
||||||
serial_device {}
|
|
||||||
|
|
||||||
initialization {
|
initialization {
|
||||||
ip_config {
|
ip_config {
|
||||||
ipv4 {
|
ipv4 {
|
Reference in a new issue