Added terraform for lightning-lane

This commit is contained in:
2026-03-07 21:18:36 -06:00
parent 7d7129632f
commit a349ce13f8
5 changed files with 178 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# ─── Provider Configuration ──────────────────────────────────────────────────
# Shared provider for all host deployments.
# Sensitive values are passed via CLI at apply time.
terraform {
required_version = ">= 1.5"
required_providers {
proxmox = {
source = "bpg/proxmox"
version = ">= 0.78.0"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_api_url
api_token = var.proxmox_api_token
insecure = true
ssh {
agent = false
}
}