add terraform project

This commit is contained in:
2025-12-25 20:25:54 +01:00
commit 81d66e91cd
15 changed files with 1166 additions and 0 deletions

26
terraform/versions.tf Normal file
View File

@@ -0,0 +1,26 @@
terraform {
required_providers {
talos = {
source = "siderolabs/talos"
version = "0.9.0"
}
proxmox = {
source = "bpg/proxmox"
version = "~> 0.69"
}
}
}
provider "talos" {}
provider "proxmox" {
endpoint = var.proxmox_endpoint
username = var.proxmox_username
password = var.proxmox_password
insecure = var.proxmox_insecure
ssh {
agent = true
username = var.proxmox_ssh_user
}
}