Updated talos version, made setup more configurable, removed obsolet stuff

This commit is contained in:
Max Pfeiffer
2025-09-11 19:48:06 +02:00
parent d43ddca54a
commit cf41134815
12 changed files with 291 additions and 202 deletions

View File

@@ -1,26 +1,26 @@
terraform {
required_providers {
local = {
source = "opentofu/local"
version = "2.5.1"
}
proxmox = {
source = "telmate/proxmox"
version = "3.0.1-rc4"
}
talos = {
source = "siderolabs/talos"
version = "0.7.0-alpha.0"
}
}
required_providers {
local = {
source = "hashicorp/local"
version = "2.5.3"
}
proxmox = {
source = "telmate/proxmox"
version = "3.0.2-rc04"
}
talos = {
source = "siderolabs/talos"
version = "0.9.0"
}
}
}
provider "proxmox" {
pm_api_url= var.proxmox_api_url
pm_api_token_id = var.proxmox_api_token_id
pm_api_token_secret = var.proxmox_api_token_secret
pm_tls_insecure = true
# Switching off parallelism is necessary here, as VM provisioning fails otherwise
# see: https://github.com/Telmate/terraform-provider-proxmox/issues/173
pm_parallel = 1
pm_api_url = var.proxmox_api_url
pm_api_token_id = var.proxmox_api_token_id
pm_api_token_secret = var.proxmox_api_token_secret
pm_tls_insecure = true
# Switching off parallelism is necessary here, as VM provisioning fails otherwise
# see: https://github.com/Telmate/terraform-provider-proxmox/issues/173
pm_parallel = 1
}