feat(terraform): deploy dev and prod talos VMs to PVE

This commit is contained in:
2026-02-10 00:34:12 +02:00
parent 6b58c2d3c3
commit 81b5b8d4f1
5 changed files with 185 additions and 0 deletions

18
terraform/providers.tf Normal file
View File

@@ -0,0 +1,18 @@
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.95.0"
}
talos = {
source = "siderolabs/talos"
version = "0.10.1"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_endpoint
api_token = var.proxmox_api_token
insecure = true
}