chore: Refactor VM deployment
This commit is contained in:
parent
d2e0c26900
commit
9ca0f7c431
13 changed files with 192 additions and 328 deletions
|
|
@ -0,0 +1,19 @@
|
|||
variable "node" {
|
||||
description = "Virtual node configuration"
|
||||
type = object({
|
||||
name = string
|
||||
ipv4_address = string
|
||||
ipv4_gateway = string
|
||||
cpu = number
|
||||
memory = number
|
||||
disk = string
|
||||
storagepool = string
|
||||
talos_version = string
|
||||
cluster_name = string
|
||||
kubernetes_version = string
|
||||
cluster_endpoint = string
|
||||
proxmox_node = string
|
||||
controlplane_addresses = list(string)
|
||||
worker_addresses = list(string)
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue