iac/terraform/kasm.tf

62 lines
1.1 KiB
Terraform
Raw Normal View History

2024-07-12 23:57:29 -04:00
resource "proxmox_virtual_environment_vm" "Kasm" {
2024-08-01 21:36:12 -04:00
# VM General Settings
node_name = "pve2"
vm_id = 333
name = "Kasm"
description = "kasm"
tags = ["tofu", "ubuntu-22", "iac-repo"]
started = true
2024-07-12 23:57:29 -04:00
2024-08-01 21:36:12 -04:00
agent {
enabled = true
}
2024-07-12 23:57:29 -04:00
2024-08-01 21:36:12 -04:00
clone {
vm_id = 9999
}
# VM CPU Settings
cpu {
cores = 4
type = "host"
architecture = "x86_64"
}
# VM Memory Settings
memory {
dedicated = 4096
}
2024-07-12 23:57:29 -04:00
2024-08-01 21:36:12 -04:00
# VM Network Settings
network_device {
bridge = "vmbr0"
vlan_id = 1
}
2024-07-12 23:57:29 -04:00
2024-08-01 21:36:12 -04:00
# VM Disk Settings
disk {
datastore_id = "local-lvm"
2024-10-12 22:12:41 -04:00
size = 152
2024-08-01 21:36:12 -04:00
interface = "scsi0"
}
2024-07-12 23:57:29 -04:00
2024-08-01 21:36:12 -04:00
initialization {
ip_config {
ipv4 {
address = var.kasm_ip
gateway = var.vlan_gateway
}
2024-07-12 23:57:29 -04:00
}
2024-08-01 21:36:12 -04:00
user_data_file_id = proxmox_virtual_environment_file.cloud_config2.id
}
2024-07-12 23:57:29 -04:00
2024-08-01 21:36:12 -04:00
lifecycle {
ignore_changes = [
initialization[0].user_account[0].keys,
initialization[0].user_account[0].password,
initialization[0].user_account[0].username,
initialization[0].user_data_file_id
]
}
}