Files
homelab/tofu/kubernetes/talos/providers.tf
Karteek dee7911259 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 <120569182+karteekiitg@users.noreply.github.com>
2025-02-24 19:52:46 +01:00

17 lines
279 B
HCL

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"
}
}
}