terraform plan
Some checks failed
Gitea Actions Demo / Terraform Plan (push) Failing after 13s

This commit is contained in:
MichaelFisher1997
2025-04-17 02:31:15 +01:00
parent 7b3c46248c
commit 30c250c66a
6 changed files with 69 additions and 25 deletions

View File

@@ -50,9 +50,15 @@ variable "pm_user" {
type = string
}
variable "vm_count" {
variable "alpaca_count" {
type = number
description = "How many Alpine VMs to create"
default = 3
default = 1
description = "How many Alpaca VMs to create"
}
variable "llama_count" {
type = number
default = 1
description = "How many Llama VMs to create"
}