mirror of
https://github.com/KevinMidboe/kazan-terraform.git
synced 2025-10-29 09:40:15 +00:00
12 lines
315 B
HCL
12 lines
315 B
HCL
provider "proxmox" {
|
|
pm_api_url = "https://${local.node}.${local.domain}:8006/api2/json"
|
|
pm_tls_insecure = true
|
|
pm_debug = true
|
|
pm_log_enable = true
|
|
pm_log_file = "terraform-plugin-proxmox.log"
|
|
pm_log_levels = {
|
|
_default = "debug"
|
|
_capturelog = ""
|
|
}
|
|
}
|