This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
IaC-Homelab/kasm.tf

63 lines
1.2 KiB
Terraform
Raw Permalink Normal View History

2024-07-05 12:47:41 -04:00
resource "proxmox_virtual_environment_vm" "Kasm" {
2024-06-29 10:08:01 -04:00
# VM General Settings
node_name = "pve2"
2024-07-05 12:47:41 -04:00
vm_id = 333
name = "Kasm"
description = "kasm"
2024-06-29 10:08:01 -04:00
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"
2024-07-05 12:47:41 -04:00
vlan_id = 1
2024-06-29 10:08:01 -04:00
}
# VM Disk Settings
disk {
2024-07-05 12:47:41 -04:00
datastore_id = "local-lvm"
size = 100
2024-06-29 10:08:01 -04:00
interface = "scsi0"
}
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,
]
}
}