-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
patchhoernchen
committed
Jul 8, 2024
1 parent
831d69d
commit 1f1f39f
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,9 @@ locals { | |
mecci = { | ||
ssh_key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILFaAXNhs2IkZQd059lPM+3h03siLRBJRBD8ouiAxsvL [email protected]" | ||
} | ||
phelix = { | ||
ssh_key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINeEBqbuKi5aOXwVEaEVCEPE8g1g1su+FxSPPswmEFaw [email protected]" | ||
} | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
] | ||
} |