terraform { required_version = ">= 1.15.9" required_providers { proxmox = { source = "registry.terraform.io/bpg/proxmox" version = ">= 0.111.1" } dns = { source = "registry.terraform.io/hashicorp/dns" version = ">= 3.6.1" } http = { source = "registry.terraform.io/hashicorp/http" version = ">= 3.6.1" } random = { source = "registry.terraform.io/hashicorp/random" version = ">= 3.9.0" } pass = { source = "registry.terraform.io/digipost/pass" version = ">= 2.1.1" } } backend "local" { path = "/mnt/nfs/terraform/proxmox/archlinux.tfstate" } }