terraform { required_providers { proxmox = { source = "telmate/proxmox" version = "3.0.1-rc8" } } } provider "proxmox" { pm_api_url = "https://${var.pm_host}:${var.pm_port}/api2/json" pm_user = var.pm_user pm_password = var.pm_password pm_tls_insecure = var.pm_tls_insecure pm_parallel = 10 pm_timeout = 600 # pm_debug = true pm_log_enable = true pm_log_file = "terraform-plugin-proxmox.log" pm_log_levels = { _default = "debug" _capturelog = "" } }