first commit

This commit is contained in:
2026-01-12 01:24:58 +04:00
commit f5b7fc63db
7 changed files with 87 additions and 0 deletions

26
variables.tf Normal file
View File

@@ -0,0 +1,26 @@
variable "images_lxc" {
type = string
default = "local:vztmpl/almalinux-9-default_20240911_amd64.tar.xz"
}
variable "lxc_auth" {
type = object({
ssh_keys = string,
pass = string
})
}
variable "lxc" {
description = "Parametrs lxc"
type = list(object({
nodes = string,
name = string,
cpus = number,
mem = number,
pool = string,
disks = string,
eth = string,
ip = string,
unprivileged = bool
dns = number
})
)
}