diff --git a/terraform/proxmox/arrbuntu.tf b/terraform/proxmox/arrbuntu.tf deleted file mode 100644 index 8ed3348..0000000 --- a/terraform/proxmox/arrbuntu.tf +++ /dev/null @@ -1,67 +0,0 @@ -resource "proxmox_virtual_environment_vm" "Arrbuntu" { - - # VM General Settings - node_name = "prox" - vm_id = 200 - name = "arrbuntu" - description = "arrbuntu" - tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"] - - agent { - enabled = true - } - - clone { - vm_id = 8000 - } - - # VM CPU Settings - cpu { - cores = 4 - type = "host" - architecture = "x86_64" - } - - # VM Memory Settings - memory { - dedicated = 8192 - } - - # VM Network Settings - network_device { - bridge = "vmbr0" - vlan_id = 1 - } - - # VM Disk Settings - disk { - datastore_id = "Fast2Tb" - size = 350 - interface = "scsi0" - } - - vga { - type = "serial0" - } - - initialization { - ip_config { - ipv4 { - address = data.bitwarden-secrets_secret.arrbuntu_ip.value - gateway = data.bitwarden-secrets_secret.vlan_gateway.value - } - } - - user_account {} - } - - 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 - ] - } - -} diff --git a/terraform/proxmox/secrets.tf b/terraform/proxmox/secrets.tf index 737ab58..f3c96c7 100644 --- a/terraform/proxmox/secrets.tf +++ b/terraform/proxmox/secrets.tf @@ -14,10 +14,6 @@ data "bitwarden-secrets_secret" "ubu_ip" { id = "d8017351-7a11-42e6-9e8d-b208000739b8" } -data "bitwarden-secrets_secret" "arrbuntu_ip" { - id = "c65f8886-f6fb-4c17-bc79-b208000604bf" -} - data "bitwarden-secrets_secret" "k3s_master1_ip" { id = "528104e1-2186-4d57-ae86-b27e01263972" }