adding downloaders

This commit is contained in:
Matt Reeves 2024-06-03 01:08:47 -04:00
parent 73c8c6c492
commit a7547b24da
3 changed files with 73 additions and 4 deletions

View file

@ -8,7 +8,7 @@ resource "proxmox_virtual_environment_vm" "Arrbuntu" {
tags = ["tofu", "ubuntu-22"] tags = ["tofu", "ubuntu-22"]
agent { agent {
enabled = false # read 'Qemu guest agent' section, change to true only when ready enabled = true # read 'Qemu guest agent' section, change to true only when ready
} }
clone { clone {
@ -47,7 +47,7 @@ resource "proxmox_virtual_environment_vm" "Arrbuntu" {
ip_config { ip_config {
ipv4 { ipv4 {
address = var.arrbuntu_ip_address address = var.arrbuntu_ip_address
gateway = var.arrbuntu_gateway gateway = var.vlan_gateway
} }
} }

65
downloaders.tf Normal file
View file

@ -0,0 +1,65 @@
resource "proxmox_virtual_environment_vm" "Downloaders" {
# VM General Settings
node_name = "prox"
vm_id = 201
name = "Downloaders"
description = "Sab, Qbitty"
tags = ["tofu", "ubuntu-22"]
agent {
enabled = false # read 'Qemu guest agent' section, change to true only when ready
}
clone {
vm_id = 8000
}
# VM CPU Settings
cpu {
cores = 3
type = "host"
}
# VM Memory Settings
memory {
dedicated = 8192
}
# VM Network Settings
network_device {
bridge = "vmbr0"
vlan_id = 1
}
# VM Disk Settings
disk {
datastore_id = "Fast2Tb"
size = 260
interface = "scsi0"
}
vga {
type = "serial0"
}
initialization {
ip_config {
ipv4 {
address = var.downloaders_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,
]
}
}

View file

@ -27,6 +27,10 @@ variable "arrbuntu_ip_address" {
type = string type = string
} }
variable "arrbuntu_gateway" { variable "vlan_gateway" {
type = string
}
variable "downloaders_ip_address" {
type = string type = string
} }