Matthew Baggett
b485c5664b
Some checks failed
Trunk Check / Trunk Check Runner (push) Failing after 1s
15 lines
No EOL
338 B
HCL
15 lines
No EOL
338 B
HCL
variable "proxmox_endpoint" {
|
|
type = string
|
|
}
|
|
variable "proxmox_token_id" {
|
|
type = string
|
|
}
|
|
variable "proxmox_token_secret" {
|
|
type = string
|
|
}
|
|
provider "proxmox" {
|
|
pm_debug = true
|
|
pm_api_url = var.proxmox_endpoint
|
|
pm_api_token_id = var.proxmox_token_id
|
|
pm_api_token_secret = var.proxmox_token_secret
|
|
} |