feat(prod): add ipfabric virtual machine configuration
Some checks failed
Terraform Deploy / Validate (push) Has been cancelled
Terraform Deploy / Plan (push) Has been cancelled
Terraform Deploy / Apply (push) Has been cancelled

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.
This commit is contained in:
darnodo
2025-12-17 20:38:59 +01:00
parent df71a05e92
commit 1fa826ae7a

View File

@@ -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"]
}
}