add: semaphore-vms terraform project for semaphore UI

This commit is contained in:
2025-12-05 19:36:03 +00:00
parent ef0e5bf8f2
commit 908f9748bd
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_endpoint
api_token = var.proxmox_api_token
insecure = false
ssh {
agent = false
private_key = file("~/.ssh/id_ed25519")
username = "root"
}
}