This commit is contained in:
Alex
2025-09-03 07:14:46 +02:00
parent b1c7c6d398
commit 62a5d49163
13 changed files with 1393 additions and 23 deletions

View File

@@ -1,7 +1,20 @@
variable "proxmox_url" { type = string }
variable "proxmox_user" { type = string }
variable "proxmox_password" { type = string; sensitive = true }
variable "proxmox_tls_insecure" { type = bool; default = true }
variable "proxmox_url" {
type = string
}
variable "proxmox_user" {
type = string
}
variable "proxmox_password" {
type = string
sensitive = true
}
variable "proxmox_tls_insecure" {
type = bool
default = true
}
variable "template_id" { type = string }
variable "target_nodes" {
@@ -14,12 +27,24 @@ variable "target_nodes" {
}
variable "ssh_public_key" { type = string }
variable "bridge" { type = string; default = "vmbr0" }
variable "storage" { type = string; default = "local-lvm" }
variable "bridge" {
type = string
default = "vmbr0"
}
variable "storage" {
type = string
default = "local-lvm"
}
variable "controller_ip" { type = string }
variable "worker1_ip" { type = string }
variable "worker2_ip" { type = string }
variable "netmask" { type = string; default = "24" }
variable "netmask" {
type = string
default = "24"
}
variable "gateway" { type = string }
variable "vm_domain" { type = string; default = "lab.local" }
variable "vm_domain" {
type = string
default = "lab.local"
}