This commit is contained in:
2023-12-20 09:13:14 -06:00
parent 8d6a9ecc8d
commit 2fc1cd4b86
5 changed files with 123 additions and 21 deletions

View File

@@ -0,0 +1,48 @@
variable "dnsserver" {
type = string
}
variable "sshkeys" {
type = string
}
variable "vlan" {
type = number
}
variable "bridge" {
type = string
}
variable "appname" {
type = string
}
variable "searchdomain" {
type = string
}
variable "pm_api_url" {
type = string
}
variable "pm_api_token_id" {
type = string
}
variable "pm_api_token_secret" {
type = string
}
variable "master" {
description = "Defaults of master nodes in K3S"
type = object({
count = number
template = string
cores = number
memory = number
node = list(string)
ip = list(number)
})
}