Add production VMs for IP Fabric and Komodo
All checks were successful
Terraform PR / Validate (pull_request) Successful in 4s
Terraform PR / Plan (pull_request) Successful in 6s

This commit is contained in:
Damien
2026-06-10 09:41:54 +02:00
parent 6c4e3c31b0
commit 66106c5ac0

View File

@@ -33,7 +33,26 @@ 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 = {
"ipfabric" = {
os = "ipfabric"
cores = 4
memory = 16384
disk_gb = 128
ip = "192.168.1.161"
gateway = "192.168.1.254"
tags = ["ipfabric"]
},
"komodo" = {
os = "alpine"
cores = 16
memory = 32768
disk_gb = 32
ip = "192.168.1.162"
gateway = "192.168.1.254"
tags = ["docker"]
}
}
#############################
# Notes de configuration