mapletree/terraform/variables.tf
2026-01-28 09:55:51 -07:00

24 lines
No EOL
498 B
HCL

variable "pve_endpoint" { type = string }
variable "pve_token_id" { type = string }
variable "pve_token_secret" { type = string; sensitive = true }
# Infrastructure Settings
variable "target_node" {
type = string
default = "pve1"
}
variable "lxc_id" {
type = number
description = "The ID of the new LXC (e.g., 201)"
}
variable "source_template_id" {
type = number
default = 9000
description = "The ID of your Golden Image"
}
variable "lxc_hostname" {
type = string
}