Add infrastructure packages: terraform-pve, ansible-push, wolfstack-keepalived, terraform-pve-vm

This commit is contained in:
Artemis
2026-06-14 19:52:52 -04:00
parent e54307d46d
commit 6f4c54cdbb
49 changed files with 2031 additions and 0 deletions

View File

@@ -0,0 +1,96 @@
variable "pm_api_url" {
description = "Proxmox API URL"
type = string
default = "https://192.168.7.33:8006/api2/json"
}
variable "pm_api_token_id" {
description = "Proxmox API token ID"
type = string
default = "root@pam!terraform"
}
variable "pm_api_token_secret" {
description = "Proxmox API token secret"
type = string
sensitive = true
}
variable "node" {
description = "Target PVE node"
type = string
default = "mk33"
}
variable "vmid" {
description = "LXC VMID"
type = number
default = 5050
}
variable "hostname" {
description = "LXC hostname"
type = string
default = "lxc-5050"
}
variable "cores" {
description = "CPU cores"
type = number
default = 2
}
variable "memory" {
description = "RAM in MB"
type = number
default = 2048
}
variable "storage" {
description = "Storage pool"
type = string
default = "local"
}
variable "rootfs_size" {
description = "Root filesystem size in GB"
type = number
default = 8
}
variable "ipv4" {
description = "Static IPv4 with CIDR"
type = string
default = "192.168.50.50/18"
}
variable "gateway" {
description = "IPv4 gateway"
type = string
default = "192.168.18.1"
}
variable "dns_servers" {
description = "DNS servers"
type = list(string)
default = ["192.168.7.7", "192.168.18.1", "1.1.1.1"]
}
variable "ssh_key_path" {
description = "Path to SSH public key for jarvis user"
type = string
default = "artemis_key.pub"
}
variable "template_file_id" {
description = "LXC OS template file ID (storage:path)"
type = string
default = "nas-ct-stor:vztmpl/debian-12-standard_12.12-1_amd64.tar.zst"
}
variable "password" {
description = "Root password for console login"
type = string
sensitive = true
default = ""
}