mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-opentofu-private.git
synced 2025-10-27 15:53:06 +00:00
48 lines
853 B
HCL
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
|
|
} |