mapletree/terraform/terraform.tfvars
2026-01-28 16:16:56 -07:00

54 lines
1.5 KiB
HCL

lxc_inventory = {
"110" = {
node = "pve1"
hostname = "pve1-lxc2"
datastore_id = "pve1-ssd01-01"
disk_size = 110 # Match the 110G from your conf
cores = 2
memory = 4092
vlan = 201
ip = "172.16.201.102/24"
gw = "172.16.201.1"
mp0_volume = "/mnt/local_storage/lxc2/docker"
mp1_volume = "/mnt/local_storage/lxc2/repo"
},
"116" = {
node = "pve1"
hostname = "pve1-lxc6"
datastore_id = "pve1-hdd01-01"
disk_size = "8"
cores = 4
memory = 8192
vlan = 201
ip = "172.16.201.106/24"
gw = "172.16.201.1"
mp0_volume = ""
mp1_volume = ""
},
"118" = {
node = "pve1"
hostname = "pve1-lxc7"
datastore_id = "pve1-ssd01-01"
disk_size = "8"
cores = 4
memory = 8192
vlan = 201
ip = "172.16.201.107/24"
gw = "172.16.201.1"
mp0_volume = "/mnt/local_storage/lxc7/docker"
mp1_volume = "/mnt/local_storage/lxc7/repo"
},
"120" = {
node = "pve1"
hostname = "pve1-lxc1"
datastore_id = "pve1-ssd01-01"
disk_size = "64"
cores = 4
memory = 8192
vlan = 201
ip = "172.16.201.101/24"
gw = "172.16.201.1"
mp0_volume = "/mnt/local_storage/lxc1/docker"
mp1_volume = "/mnt/local_storage/lxc1/repo"
}
}