Skip to content

Commit

Permalink
add cwace/openarena server
Browse files Browse the repository at this point in the history
  • Loading branch information
patchhoernchen committed Jul 8, 2024
1 parent 831d69d commit 1f1f39f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
3 changes: 3 additions & 0 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ locals {
mecci = {
ssh_key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILFaAXNhs2IkZQd059lPM+3h03siLRBJRBD8ouiAxsvL [email protected]"
}
phelix = {
ssh_key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINeEBqbuKi5aOXwVEaEVCEPE8g1g1su+FxSPPswmEFaw [email protected]"
}

}

Expand Down
28 changes: 28 additions & 0 deletions proxmox/108-cwace.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module "cwace" {
source = "../modules/vm"
node = var.node
pool = var.pool

name = "cwace"
vm_id = "108"

cores = 4
memory = 4096

clone = data.proxmox_virtual_environment_vm.debian_cloud_vm_template.vm_id

disk = {
// gigabytes
size = 32
storage = var.storage.disk
}

network = {
bridge = var.network.bridge
internal_bridge = proxmox_virtual_environment_network_linux_bridge.internal_bridge.name
}

admins = [
local.users["phelix"]
]
}

0 comments on commit 1f1f39f

Please sign in to comment.