Updated terraform configurations
This commit is contained in:
@@ -10,20 +10,26 @@ variable "proxmox_insecure" {
|
||||
default = false
|
||||
}
|
||||
|
||||
variable "proxmox_username" {
|
||||
description = "Username for password-based auth (placeholder; optional if token auth is used)."
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
#variable "proxmox_username" {
|
||||
# description = "Username for password-based auth (placeholder; optional if token auth is used)."
|
||||
# type = string
|
||||
# default = ""
|
||||
#}
|
||||
|
||||
variable "proxmox_password" {
|
||||
description = "Password for password-based auth (placeholder; optional if token auth is used)."
|
||||
#variable "proxmox_password" {
|
||||
# description = "Password for password-based auth (placeholder; optional if token auth is used)."
|
||||
# type = string
|
||||
# default = ""
|
||||
# sensitive = true
|
||||
#}
|
||||
|
||||
variable "proxmox_api_token_id" {
|
||||
type = string
|
||||
default = ""
|
||||
description = "Proxmox API token ID, e.g. terraform@pve!tf"
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "proxmox_api_token" {
|
||||
variable "proxmox_api_token_secret" {
|
||||
description = "API token for token-based auth (placeholder; optional if username/password is used)."
|
||||
type = string
|
||||
default = ""
|
||||
|
||||
Reference in New Issue
Block a user