Terraform rules working
This commit is contained in:
24
terraform/provider.tf
Normal file
24
terraform/provider.tf
Normal file
@@ -0,0 +1,24 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
proxmox = {
|
||||
source = "telmate/proxmox"
|
||||
version = "3.0.1-rc8"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "proxmox" {
|
||||
pm_api_url = "https://${var.pm_host}:8006/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 = ""
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user