Update 3 files

- /terraform/variables.tf
- /terraform/terraform.tfvars
- /terraform/main.tf
This commit is contained in:
2023-08-06 17:17:21 +00:00
parent 03d47ad04f
commit d1a83cb6f1
3 changed files with 9 additions and 7 deletions

View File

@@ -24,6 +24,12 @@ variable "pm_user" {
default = "root@pam"
}
variable "template: {
description = "Default Template to clone from"
type = string
default = "Debian12-Template"
}
variable "k3master" {
description = "Defaults of master nodes in K3S"
type = object({
@@ -33,7 +39,6 @@ variable "k3master" {
memory = number
drive = string
storage = string
template = string
node = list(string)
ip = list(number)
})
@@ -48,7 +53,6 @@ variable "k3server" {
memory = number
drive = string
storage = string
template = string
node = list(string)
ip = list(number)
})