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

21
provider.tf Normal file
View File

@@ -0,0 +1,21 @@
terraform {
required_version = ">= 1.0"
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "~> 0.69"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_endpoint
api_token = var.proxmox_api_token
insecure = true # self-signed cert
ssh {
agent = true
username = "root"
}
}