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/k3s-master3.tf

66 lines
1.2 KiB
Terraform
Raw Permalink Normal View History

2024-06-15 10:23:01 -04:00
resource "proxmox_virtual_environment_vm" "K3s-Master3" {
2024-06-13 23:34:21 -04:00
# VM General Settings
node_name = "prox"
2024-06-15 10:23:01 -04:00
vm_id = 330
name = "K3s-Master3"
description = "Kubernetes master"
2024-06-13 23:34:21 -04:00
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
agent {
2024-06-13 23:39:53 -04:00
enabled = true # read 'Qemu guest agent' section, change to true only when ready
2024-06-13 23:34:21 -04:00
}
clone {
vm_id = 8000
}
# VM CPU Settings
cpu {
cores = 4
type = "host"
2024-06-24 15:33:09 -04:00
architecture = "x86_64"
2024-06-13 23:34:21 -04:00
}
# VM Memory Settings
memory {
2024-07-13 10:09:59 -04:00
dedicated = 8192
2024-06-13 23:34:21 -04:00
}
# VM Network Settings
network_device {
bridge = "vmbr0"
vlan_id = 1
}
# VM Disk Settings
disk {
datastore_id = "Fast2Tb"
size = 100
interface = "scsi0"
}
vga {
type = "serial0"
}
initialization {
ip_config {
ipv4 {
address = "dhcp"
}
}
user_account {}
}
lifecycle {
ignore_changes = [
initialization[0].user_account[0].keys,
initialization[0].user_account[0].password,
initialization[0].user_account[0].username,
]
}
}