feat(terraform): deploy dev and prod talos VMs to PVE
This commit is contained in:
22
terraform/variables.tf
Normal file
22
terraform/variables.tf
Normal file
@@ -0,0 +1,22 @@
|
||||
variable "proxmox_endpoint" {
|
||||
description = "The Proxmox API endpoint URL"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "proxmox_api_token" {
|
||||
description = "The Proxmox API token"
|
||||
type = string
|
||||
sensitive = false
|
||||
}
|
||||
|
||||
variable "clusters" {
|
||||
type = map(object({
|
||||
cores = number
|
||||
memory = number
|
||||
disk_size_gb = number
|
||||
hostname = string
|
||||
mac_address = string
|
||||
ip_address = string
|
||||
datastore_id = string
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user