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

66 lines
1.3 KiB
Terraform
Raw Normal View History

2024-06-03 00:02:40 -04:00
resource "proxmox_virtual_environment_vm" "Arrbuntu" {
# VM General Settings
node_name = "prox"
vm_id = 200
name = "arrbuntu"
description = "arrbuntu"
2024-06-07 01:05:29 -04:00
tags = ["tofu", "ubuntu-22, auto-homelab-repo, infrastructure"]
2024-06-03 00:02:40 -04:00
agent {
2024-06-03 01:08:47 -04:00
enabled = true # read 'Qemu guest agent' section, change to true only when ready
2024-06-03 00:02:40 -04:00
}
clone {
vm_id = 8000
}
# VM CPU Settings
cpu {
cores = 2
type = "host"
}
# VM Memory Settings
memory {
2024-06-07 01:05:29 -04:00
dedicated = 12288
2024-06-03 00:02:40 -04:00
}
# VM Network Settings
network_device {
bridge = "vmbr0"
vlan_id = 1
}
# VM Disk Settings
disk {
datastore_id = "Fast2Tb"
size = 120
interface = "scsi0"
}
vga {
type = "serial0"
}
initialization {
ip_config {
ipv4 {
2024-06-03 00:12:06 -04:00
address = var.arrbuntu_ip_address
2024-06-03 01:08:47 -04:00
gateway = var.vlan_gateway
2024-06-03 00:02:40 -04:00
}
}
user_account {}
}
lifecycle {
ignore_changes = [
initialization[0].user_account[0].keys,
initialization[0].user_account[0].password,
initialization[0].user_account[0].username,
]
}
2024-06-03 00:12:06 -04:00
2024-06-03 00:02:40 -04:00
}