Update terraform/main.tf, terraform/terraform.tfvars, terraform/variables.tf

This commit is contained in:
2022-12-10 20:14:20 +00:00
parent 854bd34f5c
commit b5eb756ac0
3 changed files with 24 additions and 93 deletions

View File

@@ -31,10 +31,10 @@ variable "k3master" {
name = list(string)
cores = number
memory = number
drive = string
drive = list(string)
storage = string
template = string
node = string
template = list(string)
node = list(string)
ip = list(number)
})
}
@@ -46,26 +46,10 @@ variable "k3server" {
name = list(string)
cores = number
memory = number
drive = string
drive = list(string)
storage = string
template = string
node = string
ip = list(number)
})
}
variable "k3server2" {
description = "Defaults of worker nodes in K3S"
type = object({
count = number
name = list(string)
cores = number
memory = number
drive = string
storage = string
template = string
node = string
template = list(string)
node = list(string)
ip = list(number)
})
}