Files

31 lines
661 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-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-09-08 12:31:12 -04:00
random = {
source = "registry.terraform.io/hashicorp/random"
version = ">= 3.9.0"
}
pass = {
source = "registry.terraform.io/digipost/pass"
version = ">= 2.1.1"
}
2026-08-20 10:29:11 -04:00
}
backend "local" {
2026-09-08 00:15:03 -04:00
path = "/mnt/nfs/terraform/proxmox/archlinux.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
}