Files

27 lines
555 B
Terraform
Raw Permalink Normal View History

2026-08-20 10:29:11 -04:00
terraform {
required_version = ">= 1.15.9"
required_providers {
proxmox = {
source = "registry.terraform.io/bpg/proxmox"
version = ">= 0.111.1"
}
2026-09-01 17:31:47 -04:00
talos = {
source = "registry.terraform.io/siderolabs/talos"
version = "0.11.0"
}
2026-09-03 00:35:34 -04:00
dns = {
source = "registry.terraform.io/hashicorp/dns"
version = ">= 3.6.1"
}
2026-09-08 00:15:03 -04:00
http = {
source = "registry.terraform.io/hashicorp/http"
version = ">= 3.6.1"
}
2026-08-20 10:29:11 -04:00
}
backend "local" {
2026-09-08 00:15:03 -04:00
path = "/mnt/nfs/terraform/proxmox/talos.tfstate"
2026-08-20 10:29:11 -04:00
}
2026-09-01 17:31:47 -04:00
2026-08-20 10:29:11 -04:00
}