feat: initial PBS LXC deployment on gihyeon2

This commit is contained in:
21in7
2026-03-19 20:49:00 +09:00
commit 02a6f1f28c
16 changed files with 4397 additions and 0 deletions

11
variables.tf Normal file
View File

@@ -0,0 +1,11 @@
variable "proxmox_endpoint" {
description = "Proxmox VE API endpoint URL"
type = string
default = "https://192.168.50.87:8006"
}
variable "proxmox_api_token" {
description = "Proxmox API token (format: user@realm!tokenid=token-value)"
type = string
sensitive = true
}