mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-opentofu-private.git
synced 2025-10-27 07:43:07 +00:00
35 lines
633 B
HCL
35 lines
633 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"
|
|
}
|