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/whisper.tf

74 lines
1.4 KiB
Terraform
Raw Normal View History

2024-06-04 00:19:58 -04:00
resource "proxmox_virtual_environment_vm" "Whisper" {
# VM General Settings
node_name = "prox"
vm_id = 203
name = "Whisper"
2024-06-06 00:06:12 -04:00
machine = "q35"
2024-06-04 00:19:58 -04:00
description = "Creates subtitles for Bazarr and stable-diffusion"
2024-06-09 12:05:45 -04:00
tags = ["tofu", "ubuntu-22", "auto-homelab-repo"]
2024-06-04 00:19:58 -04:00
agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready
}
clone {
vm_id = 8000
}
# VM CPU Settings
cpu {
cores = 2
type = "host"
}
# VM Memory Settings
memory {
dedicated = 4096
}
# VM Network Settings
network_device {
bridge = "vmbr0"
vlan_id = 1
}
# VM Disk Settings
disk {
datastore_id = "Fast2Tb"
size = 40
interface = "scsi0"
}
vga {
type = "serial0"
}
hostpci {
device = "hostpci0"
pcie = true
mapping = "gpu"
rombar = true
}
initialization {
ip_config {
ipv4 {
address = var.whisper_ip_address
gateway = var.vlan_gateway
}
}
user_account {}
}
lifecycle {
ignore_changes = [
initialization[0].user_account[0].keys,
initialization[0].user_account[0].password,
initialization[0].user_account[0].username,
]
}
}