mirror of
https://github.com/optim-enterprises-bv/homelab.git
synced 2025-10-29 17:12:34 +00:00
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>
17 lines
279 B
HCL
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"
|
|
}
|
|
}
|
|
}
|