iac/terraform/proxmox/plausible.tf

66 lines
1.3 KiB
Terraform
Raw Normal View History

2024-12-07 17:29:28 -05:00
resource "proxmox_virtual_environment_vm" "Plausible" {
2024-07-12 23:57:29 -04:00
# VM General Settings
node_name = "prox"
2024-12-07 17:33:25 -05:00
vm_id = 103
2024-12-07 17:29:28 -05:00
name = "Plausible"
description = "Plausible"
tags = ["tofu", "ubuntu24", "iac-repo", "infrastructure"]
2024-07-12 23:57:29 -04:00
agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready
}
clone {
2024-12-07 17:29:28 -05:00
vm_id = 9996
2024-07-12 23:57:29 -04:00
}
# VM CPU Settings
cpu {
2024-12-07 17:49:24 -05:00
cores = 3
2024-07-12 23:57:29 -04:00
type = "host"
architecture = "x86_64"
}
# VM Memory Settings
memory {
2024-12-07 17:49:24 -05:00
dedicated = 4196
2024-07-12 23:57:29 -04:00
}
# VM Network Settings
network_device {
bridge = "vmbr0"
vlan_id = 1
}
# VM Disk Settings
disk {
datastore_id = "Fast2Tb"
2024-12-07 17:29:28 -05:00
size = 30
2024-07-12 23:57:29 -04:00
interface = "scsi0"
}
vga {
type = "serial0"
}
initialization {
ip_config {
ipv4 {
address = "dhcp"
}
}
2024-12-07 17:29:28 -05:00
user_data_file_id = proxmox_virtual_environment_file.cloud_config.id
2024-07-12 23:57:29 -04:00
}
lifecycle {
ignore_changes = [
initialization[0].user_account[0].keys,
initialization[0].user_account[0].password,
initialization[0].user_account[0].username,
2024-07-20 10:33:58 -04:00
initialization[0].user_data_file_id
2024-07-12 23:57:29 -04:00
]
}
2024-12-07 17:29:28 -05:00
}