Files
tofu/main.tf
Clément VÉRET 12e80f6a48
All checks were successful
terraform-lint / terraform-lint (push) Successful in 4s
♻️: store metadata to S3
2025-09-04 09:57:02 +02:00

19 lines
585 B
HCL

module "lxc" {
source = "./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
}