From 1fa826ae7a6399d4d5fa6c64c62b5b267f743bf6 Mon Sep 17 00:00:00 2001 From: darnodo Date: Wed, 17 Dec 2025 20:38:59 +0100 Subject: [PATCH] feat(prod): add ipfabric virtual machine configuration Adds the 'ipfabric' instance to the production virtual_machines inventory. This provisions the server with 8 cores, 16GB memory, and 128GB disk assigned to IP 192.168.1.162. --- terraform/prod/terraform.tfvars | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/terraform/prod/terraform.tfvars b/terraform/prod/terraform.tfvars index e66e2f8..4a6761b 100644 --- a/terraform/prod/terraform.tfvars +++ b/terraform/prod/terraform.tfvars @@ -42,6 +42,15 @@ virtual_machines = { ip = "192.168.1.161" gateway = "192.168.1.254" tags = ["netlab"] + }, + "ipfabric" = { + os = "ipfabric" + cores = 8 + memory = 16384 + disk_gb = 128 + ip = "192.168.1.162" + gateway = "192.168.1.254" + tags = ["ipfabric", "netlab"] } }