TerraHome/terraform/variables.tf

82 lines
1.1 KiB
Terraform
Raw Normal View History

2025-04-17 01:28:18 +01:00
variable "proxmox_password" {
type = string
}
variable "target_node" {
type = string
}
variable "clone_template" {
type = string
}
variable "vm_name" {
type = string
}
variable "cores" {
type = number
}
variable "memory" {
type = number
}
variable "disk_size" {
type = string
}
variable "sockets" {
type = number
}
variable "bridge" {
type = string
}
variable "disk_type" {
type = string
}
variable "storage" {
type = string
}
variable "pm_api_url" {
type = string
}
variable "pm_user" {
type = string
}
2025-04-17 02:31:15 +01:00
variable "alpaca_count" {
2025-04-17 01:28:18 +01:00
type = number
2025-04-17 02:31:15 +01:00
default = 1
description = "How many Alpaca VMs to create"
}
variable "llama_count" {
type = number
default = 1
description = "How many Llama VMs to create"
2025-04-17 01:28:18 +01:00
}
2025-04-17 16:46:19 +01:00
variable "alpaca_vm_count" {
type = number
default = 1
description = "How many Alpaca VMs to create"
}
variable "llama_vm_count" {
type = number
default = 1
description = "How many Llama VMs to create"
}
2025-04-17 17:02:46 +01:00
variable "TS_AUTHKEY" {
2025-04-17 16:46:19 +01:00
type = string
2025-04-17 17:02:46 +01:00
description = "Tailscale auth key used in cloud-init"
2025-04-17 16:46:19 +01:00
}