mapletree/terraform/variables.tf
2026-01-28 14:34:54 -07:00

30 lines
No EOL
477 B
HCL

variable "pve_endpoint" {
type = string
}
variable "pve_token_id" {
type = string
}
variable "pve_token_secret" {
type = string
sensitive = true
}
variable "lxc_inventory" {
type = map(object({
node = string
hostname = string
disk_size = string
cores = number
memory = number
vlan = number
ip = string
gw = string
}))
}
variable "lxc_root_password" {
type = string
sensitive = true
}