iac/terraform/kasm.tf

76 lines
1.4 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"
size = 100
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
]
}
2024-07-12 23:57:29 -04:00
2024-08-01 21:36:12 -04:00
provisioner "remote-exec" {
inline = [
"cd /home/mafyuh/iac/docker/kasm",
"git pull",
"docker compose up -d"
2024-08-01 21:36:12 -04:00
]
connection {
type = "ssh"
user = "mafyuh"
private_key = file("/home/mafyuh/.ssh/id_rsa")
host = var.kasm_ssh_ip
}
2024-07-12 23:57:29 -04:00
}
2024-08-01 21:36:12 -04:00
}