Add IPFabric VM configuration to production Terraform variables
All checks were successful
Terraform Deploy / Validate (push) Successful in 4s
Terraform Deploy / Plan (push) Successful in 7s
Terraform Deploy / Apply (push) Has been skipped

The virtual_machines map is now populated with configuration for an
IPFabric VM, including specifications for OS, CPU, memory, disk size, IP
address, gateway, and associated tags.
This commit is contained in:
Damien
2026-05-03 20:02:31 +02:00
parent 12e413f2a7
commit befd57f21f

View File

@@ -33,7 +33,17 @@ admin_ssh_public_key_path = "~/.ssh/keys/id_rsa.pub"
# Utilisateur par défaut sur les VMs
default_vm_user = "damien"
virtual_machines = {}
virtual_machines = { virtual_machines = {
"ipfabric" = {
os = "ipfabric"
cores = 4
memory = 16384
disk_gb = 128
ip = "192.168.1.161"
gateway = "192.168.1.254"
tags = ["ipfabric"]
}
} }
#############################
# Notes de configuration