forked from Fediversity/Fediversity
pass in description fix syntax configure proxmox provider typo add doc comment in existing modules add comment allow insecure proxmox connection for use in dev wip proxmox progress use service configurations moved to machine-independent location wire settings directly without option block terraform adjust cwd try tf on null input update .envrc.sample with sample proxmox credentials
43 lines
761 B
HCL
43 lines
761 B
HCL
variable "category" {
|
|
type = string
|
|
description = "Category to be used in naming the base image."
|
|
}
|
|
|
|
variable "description" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "sockets" {
|
|
type = number
|
|
description = "The number of sockets of the VM."
|
|
default = 1
|
|
}
|
|
|
|
variable "cores" {
|
|
type = number
|
|
description = "The number of cores of the VM."
|
|
default = 1
|
|
}
|
|
|
|
variable "memory" {
|
|
type = number
|
|
description = "The amount of memory of the VM in MiB."
|
|
default = 2048
|
|
}
|
|
|
|
variable "disk_size" {
|
|
type = number
|
|
description = "The amount of disk of the VM in GiB."
|
|
default = 32
|
|
}
|
|
|
|
variable "config_nix" {
|
|
type = string
|
|
default = "{}"
|
|
}
|
|
|
|
variable "config_tf" {
|
|
type = any # map(any): all map elements must have the same type
|
|
default = {}
|
|
}
|