(Install) for barbatruc pve

This commit is contained in:
2025-11-22 01:27:53 +01:00
commit 8cea4a43a3
11 changed files with 366 additions and 0 deletions

16
provider.tf Normal file
View File

@@ -0,0 +1,16 @@
terraform {
required_version = "> 1.6.0"
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "~> 0.87.0"
}
}
}
provider "proxmox" {
endpoint = var.pve_endpoint
username = var.pve_username
password = var.pve_password
insecure = var.pve_insecure
}