From b18f911ae7e929319c9a3f31cc72b2dbca79f810 Mon Sep 17 00:00:00 2001 From: Matt Reeves Date: Sun, 22 Dec 2024 01:42:22 -0500 Subject: [PATCH] rm plausible --- terraform/proxmox/plausible.tf | 66 ---------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 terraform/proxmox/plausible.tf diff --git a/terraform/proxmox/plausible.tf b/terraform/proxmox/plausible.tf deleted file mode 100644 index ac54f10..0000000 --- a/terraform/proxmox/plausible.tf +++ /dev/null @@ -1,66 +0,0 @@ -resource "proxmox_virtual_environment_vm" "Plausible" { - - # VM General Settings - node_name = "prox" - vm_id = 103 - name = "Plausible" - description = "Plausible" - tags = ["tofu", "ubuntu24", "iac-repo", "infrastructure"] - - agent { - enabled = true # read 'Qemu guest agent' section, change to true only when ready - } - - clone { - vm_id = 9996 - } - - # VM CPU Settings - cpu { - cores = 3 - type = "host" - architecture = "x86_64" - } - - # VM Memory Settings - memory { - dedicated = 4196 - } - - # VM Network Settings - network_device { - bridge = "vmbr0" - vlan_id = 1 - } - - # VM Disk Settings - disk { - datastore_id = "Fast2Tb" - size = 30 - interface = "scsi0" - } - - vga { - type = "serial0" - } - - initialization { - ip_config { - ipv4 { - address = "dhcp" - } - } - - user_data_file_id = proxmox_virtual_environment_file.cloud_config.id - } - - lifecycle { - ignore_changes = [ - initialization[0].user_account[0].keys, - initialization[0].user_account[0].password, - initialization[0].user_account[0].username, - initialization[0].user_data_file_id - ] - } - -} \ No newline at end of file