Init repo

This commit is contained in:
Ghislain
2025-12-18 21:24:54 +01:00
commit f84cc44ad6
2 changed files with 16 additions and 0 deletions

16
provider.tf Normal file
View File

@@ -0,0 +1,16 @@
terraform {
required_providers {
proxmox = {
source = "Telmate/proxmox"
version = "2.9.14"
}
}
}
provider "proxmox" {
pm_api_url = "https://192.168.1.57:8006/api2/json"
pm_user = "terraform@pve"
pm_password = "terraform"
pm_tls_insecure = "true"
pm_parallel = 3
}