Files
tofu/main.tf
Clément VÉRET 6f7dc095db
All checks were successful
terraform-lint / terraform-lint (push) Successful in 4s
🎨: move modules to its own directory
2025-10-30 10:31:11 +01:00

19 lines
593 B
HCL

module "lxc" {
source = "./modules/proxmox_lxc_container"
for_each = var.lxc_containers
server_name = each.key
server_desc = each.value.server_desc
ip_suffix = each.value.ip_suffix
cpu_cores = each.value.cpu_cores
memory_dedicated = each.value.memory_dedicated
debian_tmpl = each.value.debian_tmpl
tags = each.value.tags
unprivileged = each.value.unprivileged
started = each.value.started
start_on_boot = each.value.start_on_boot
disk = each.value.disk
features = each.value.features
}