16 lines
423 B
Terraform
16 lines
423 B
Terraform
|
|
# ===========================================
|
||
|
|
# VARIABLES (sensíveis — não commitar valores)
|
||
|
|
# ===========================================
|
||
|
|
|
||
|
|
variable "proxmox_api_token_id" {
|
||
|
|
description = "Token ID do Proxmox (formato: UUID@pam!token-name)"
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "proxmox_api_token_secret" {
|
||
|
|
description = "Secret do token do Proxmox"
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|