AZ-NIX/terraform/variables.tf
2025-08-01 08:43:04 +02:00

23 lines
500 B
HCL

variable "proxmox_api_url" {
description = "The URL of the Proxmox API (without /api2/json)"
type = string
default = "https://proxmox.local:8006"
}
variable "proxmox_token" {
description = "The password for the Proxmox API"
type = string
sensitive = true
}
variable "proxmox_node" {
description = "The name of the Proxmox node"
type = string
default = "pve"
}
variable "ionos_username" {}
variable "ionos_password" {}
variable "ssh_public_key" {}