Files
homelab-v/tofu/kubernetes/talos/providers.tf
T
KarteekandVegard Hagen 6e26baa532 fix(talos): use factory api to generate schematic ID
1. Using a dict instead of set in proxmox_virtual_environment_download_file to maintain consistant order and avoid destroying and recreating resource.
2. Pointing the update_schematic to existing file and added a comment.
3. Reverted to using http api for getting schematic id.
4. Left the official provider code intact and added a comment.
5. Fixed a typo in cert generation comment

Signed-off-by: Karteek <[email protected]>
2025-03-23 11:47:49 +01:00

17 lines
279 B
Terraform

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = ">=0.66.1"
}
talos = {
source = "siderolabs/talos"
version = ">=0.6.0"
}
http = {
source = "hashicorp/http"
version = ">=3.4.5"
}
}
}