ingress/terraform/variables.tf
Tine 274fd90d2c
feat: initial commit
Having problems with how to upload raw disk image to proxmox using terraform.
2024-08-20 21:03:23 +02:00

32 lines
466 B
HCL

variable "nodes" {
type = map(object({
name = string
host = string
bridge = string
cores = optional(number, 1)
memory = optional(number, 512)
storage = optional(string, "main")
boot_size = optional(number, 8)
cloudinit = string
}))
}
variable "common_storage" {
type = string
}
variable "digitalocean_token" {
type = string
}
variable "proxmox_token" {
type = string
}
variable "image_path" {
type = string
}