22 lines
618 B
HCL
22 lines
618 B
HCL
variable "proxmox_endpoint" {
|
|
description = "URL of the Proxmox API endpoint, e.g. https://192.168.1.10:8006/"
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_api_token" {
|
|
description = "Proxmox API token in the form user@realm!token-id=secret, e.g. terraform@pve!api-token-name=<SECRET>"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "proxmox_insecure" {
|
|
description = "Skip TLS certificate verification (set true for self-signed certs)"
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "proxmox_node_name" {
|
|
description = "Name of the Proxmox node to manage resources on"
|
|
type = string
|
|
}
|