initial commit

This commit is contained in:
2023-12-18 07:56:18 -06:00
commit 0e141e4b27
3 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
terraform {
backend "http" {}
required_providers {
proxmox = {
source = "TheGameProfi/proxmox"
version = "2.9.15"
}
}
}
provider "proxmox" {
pm_parallel = 3
pm_tls_insecure = false
pm_api_url = var.pm_api_url
pm_api_token_id = var.pm_api_token_id
pm_api_token_secret = var.pm_api_token_secret
pm_debug = false
}