mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-02 03:08:34 +00:00
22 lines
395 B
HCL
22 lines
395 B
HCL
|
|
variable "proxmox_host" {
|
|
description = "Proxmox host"
|
|
type = string
|
|
default = "192.168.1.1"
|
|
}
|
|
|
|
variable "proxmox_nodename" {
|
|
description = "Proxmox node name"
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_token_id" {
|
|
description = "Proxmox token id"
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_token_secret" {
|
|
description = "Proxmox token secret"
|
|
type = string
|
|
}
|