78 lines
1.9 KiB
Text
78 lines
1.9 KiB
Text
|
|
# Non-secret nodito infrastructure config. Auto-loaded by tofu (*.auto.tfvars),
|
||
|
|
# so no -var-file is needed. Provider credentials live in terraform.tfvars,
|
||
|
|
# which is gitignored.
|
||
|
|
|
||
|
|
proxmox_node = "nodito"
|
||
|
|
zfs_storage_name = "proxmox-tank-1"
|
||
|
|
template_name = "debian-13-cloud-init"
|
||
|
|
cloud_init_user = "counterweight"
|
||
|
|
|
||
|
|
# Public key injected into every VM via cloud-init.
|
||
|
|
ssh_authorized_keys = <<EOKEY
|
||
|
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOVC68uU7dTpZ8mDleakoBX6crnBdKNuvg6qeD73t+6L counterweightoperator@counterstation
|
||
|
|
EOKEY
|
||
|
|
|
||
|
|
# Note that the resources set here are designed for startup.
|
||
|
|
# Some of these services are resource hungry at first, but
|
||
|
|
# can be powered down after their bootstrap finishes.
|
||
|
|
vms = {
|
||
|
|
"small-backups-box" = {
|
||
|
|
vmid = 1200
|
||
|
|
name = "small-backups-box"
|
||
|
|
cores = 1
|
||
|
|
memory_mb = 512
|
||
|
|
disk_size_gb = 100
|
||
|
|
ipconfig0 = "ip=dhcp"
|
||
|
|
},
|
||
|
|
"knots-box" = {
|
||
|
|
vmid = 2100
|
||
|
|
name = "knots-box"
|
||
|
|
cores = 4
|
||
|
|
memory_mb = 16384
|
||
|
|
disk_size_gb = 10
|
||
|
|
ipconfig0 = "ip=dhcp"
|
||
|
|
},
|
||
|
|
"fulcrum-box" = {
|
||
|
|
vmid = 2200
|
||
|
|
name = "fulcrum-box"
|
||
|
|
cores = 1
|
||
|
|
memory_mb = 2048
|
||
|
|
disk_size_gb = 10
|
||
|
|
ipconfig0 = "ip=dhcp"
|
||
|
|
},
|
||
|
|
"mempool-box" = {
|
||
|
|
vmid = 2300
|
||
|
|
name = "mempool-box"
|
||
|
|
cores = 2
|
||
|
|
memory_mb = 4096
|
||
|
|
disk_size_gb = 30
|
||
|
|
ipconfig0 = "ip=dhcp"
|
||
|
|
},
|
||
|
|
"memos-box" = {
|
||
|
|
vmid = 8100
|
||
|
|
name = "memos-box"
|
||
|
|
cores = 1
|
||
|
|
memory_mb = 1024
|
||
|
|
disk_size_gb = 10
|
||
|
|
ipconfig0 = "ip=dhcp"
|
||
|
|
},
|
||
|
|
"forgejo-runner-box" = {
|
||
|
|
vmid = 3100
|
||
|
|
name = "forgejo-runner-box"
|
||
|
|
cores = 4
|
||
|
|
memory_mb = 4096
|
||
|
|
disk_size_gb = 50
|
||
|
|
ipconfig0 = "ip=dhcp"
|
||
|
|
},
|
||
|
|
"arbret-staging-box" = {
|
||
|
|
vmid = 3200
|
||
|
|
name = "arbret-staging-box"
|
||
|
|
cores = 2
|
||
|
|
memory_mb = 2048
|
||
|
|
disk_size_gb = 20
|
||
|
|
ipconfig0 = "ip=dhcp"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|