Compare commits

..

2 Commits

Author SHA1 Message Date
CC
898ee9359f n8n module test 2026-05-20 23:50:30 +01:00
CC
1ad102e28a n8n module test 2026-05-20 23:50:01 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ locals {
} : var.instances
}
module "vm" {
module "each.value.vm_name" {
for_each = local.instance_map
source = "./modules/proxmox_ubuntu_cloudinit_template"

View File

@@ -44,7 +44,7 @@ variable "vm_defaults" {
bridge = string
vm_cpu = number
vm_ram = number
vm_size = string
vm_size = number
})
default = {
node_datastore = "hlst"
@@ -54,7 +54,7 @@ variable "vm_defaults" {
bridge = "vmbr0"
vm_cpu = 1
vm_ram = 2048
vm_size = "20G"
vm_size = 20
}
}