Files
2026-06-28 01:01:34 +02:00

15 lines
258 B
Terraform

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "~> 0.70"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_endpoint
username = var.proxmox_user
password = var.proxmox_password
insecure = true
}