terraform apply

This commit is contained in:
MichaelFisher1997
2025-04-17 16:46:19 +01:00
parent c2b86d7c5a
commit 03446a9453
6 changed files with 180 additions and 20 deletions

View File

@@ -62,3 +62,20 @@ variable "llama_count" {
description = "How many Llama VMs to create"
}
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"
}
variable "tailscale_key" {
type = string
description = "Tailscale auth key"
}