Files
k3s/terraform/variables.tf
DeveloperDurp 696729db2e Update 3 files
- /terraform/variables.tf
- /terraform/main.tf
- /terraform/defaults.tf
2023-07-26 10:58:32 +00:00

41 lines
814 B
HCL

variable "pm_api_url" {
description = "API URL to Proxmox provider"
type = string
}
variable "dnsserver" {
description = "DNS provider"
type = string
}
variable "sshkeys" {
description = "Public SSH key to inject into CloudInit"
type = string
}
variable "pm_password" {
description = "Passowrd to Proxmox provider"
type = string
}
variable "pm_user" {
description = "UIsername to Proxmox provider"
type = string
default = "root@pam"
}
variable "VM" {
description = "Defaults of master nodes in K3S"
type = object({
count = number
name = list(string)
cores = number
memory = number
drive = string
storage = string
template = list(string)
node = list(string)
ip = list(number)
})
}