Files
iac-opentofu-public/proxmox.variables.tf

48 lines
853 B
HCL

variable "proxmox_server" {
description = "Proxmox server URL"
type = string
sensitive = false
}
variable "proxmox_server_ssh" {
description = "Proxmox server ssh url"
type = string
sensitive = false
}
variable "proxmox_username_ssh" {
description = "Proxmox server ssh username"
type = string
sensitive = false
}
variable "proxmox_password_ssh" {
description = "Proxmox server ssh password"
type = string
sensitive = true
}
variable "proxmox_apikey" {
description = "Proxmox server api key"
type = string
sensitive = true
}
variable "node_name" {
default = "fenix"
}
variable "proxmox_VM_username"
{
description = "Proxmox VM user name"
type = string
sensitive = true
}
variable "proxmox_VM_password"
{
description = "Proxmox VM password"
type = string
sensitive = true
}