adding whisper
This commit is contained in:
parent
a7547b24da
commit
d43f8af4fa
2 changed files with 98 additions and 0 deletions
24
provider.tf
24
provider.tf
|
@ -13,6 +13,14 @@ provider "proxmox" {
|
|||
api_token = var.virtual_environment_api
|
||||
insecure = true
|
||||
|
||||
ssh {
|
||||
agent = true
|
||||
username = "root"
|
||||
node {
|
||||
name = "prox"
|
||||
address = var.prox_ip_address
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
variable "virtual_environment_endpoint" {
|
||||
|
@ -34,3 +42,19 @@ variable "arrbuntu_ip_address" {
|
|||
variable "downloaders_ip_address" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "whisper_ip_address" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "ssh_password" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "ssh_username" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "prox_ip_address" {
|
||||
type = string
|
||||
}
|
74
whisper.tf
Normal file
74
whisper.tf
Normal file
|
@ -0,0 +1,74 @@
|
|||
resource "proxmox_virtual_environment_vm" "Whisper" {
|
||||
|
||||
# VM General Settings
|
||||
node_name = "prox"
|
||||
vm_id = 203
|
||||
name = "Whisper"
|
||||
description = "Creates subtitles for Bazarr and stable-diffusion"
|
||||
tags = ["tofu", "ubuntu-22"]
|
||||
|
||||
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"
|
||||
}
|
||||
|
||||
machine = "q35"
|
||||
|
||||
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,
|
||||
]
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue