File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ locals {
1515 mecci = {
1616 ssh_key
= " ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILFaAXNhs2IkZQd059lPM+3h03siLRBJRBD8ouiAxsvL [email protected] " 1717 }
18+ phelix = {
19+ ssh_key
= " ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINeEBqbuKi5aOXwVEaEVCEPE8g1g1su+FxSPPswmEFaw [email protected] " 20+ }
1821
1922 }
2023
Original file line number Diff line number Diff line change 1+ module "cwace" {
2+ source = " ../modules/vm"
3+ node = var. node
4+ pool = var. pool
5+
6+ name = " cwace"
7+ vm_id = " 108"
8+
9+ cores = 4
10+ memory = 4096
11+
12+ clone = data. proxmox_virtual_environment_vm . debian_cloud_vm_template . vm_id
13+
14+ disk = {
15+ // gigabytes
16+ size = 32
17+ storage = var.storage.disk
18+ }
19+
20+ network = {
21+ bridge = var.network.bridge
22+ internal_bridge = proxmox_virtual_environment_network_linux_bridge.internal_bridge.name
23+ }
24+
25+ admins = [
26+ local . users [" phelix" ]
27+ ]
28+ }
You can’t perform that action at this time.
0 commit comments