From 46cd198b41ca5a2fc0808dafc4344d5034323015 Mon Sep 17 00:00:00 2001 From: Sebastian Serfling Date: Fri, 8 May 2026 14:59:27 +0200 Subject: [PATCH] feat: ssh-public-keys direkt beim pct create --- terraform/variables.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/terraform/variables.tf b/terraform/variables.tf index 8102316..aa071a2 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -64,3 +64,19 @@ variable "root_password" { type = string sensitive = true } + +variable "lxc_cores" { + default = 2 +} + +variable "lxc_memory" { + default = 1024 +} + +variable "lxc_swap" { + default = 512 +} + +variable "lxc_rootfs" { + default = "SSD:10" +}