mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
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]>
17 lines
279 B
Terraform
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"
|
|
}
|
|
}
|
|
}
|